Sha256: 5961cd25fd61ec503b2a8d4901b55214782a825b8cf90331122ab2d7767181e9

Contents?: true

Size: 471 Bytes

Versions: 6

Compression:

Stored size: 471 Bytes

Contents

/*
 * Copyright (c) Edward Thomson.  All rights reserved.
 *
 * This file is part of ntlmclient, distributed under the MIT license.
 * For full terms and copyright information, and for third-party
 * copyright information, see the included LICENSE.txt file.
 */

#include <stdlib.h>
#include <stdint.h>

#include "compat.h"
#include "util.h"

void memzero(void *data, size_t size)
{
	volatile uint8_t *scan = (volatile uint8_t *)data;

	while (size--)
		*scan++ = 0x0;
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rugged-1.1.0 vendor/libgit2/deps/ntlmclient/util.c
rugged-1.0.1 vendor/libgit2/deps/ntlmclient/util.c
rugged-1.0.0 vendor/libgit2/deps/ntlmclient/util.c
rugged-0.99.0 vendor/libgit2/deps/ntlmclient/util.c
rugged-0.28.4 vendor/libgit2/deps/ntlmclient/util.c
rugged-0.27.10 vendor/libgit2/deps/ntlmclient/util.c