shithub: scc

ref: 9e7b8848343bdb7e2a44c5273dd7766353fdac2e
dir: /tests/libc/execute/0032-memset.c/

View raw version
#include <assert.h>
#include <stdio.h>
#include <string.h>

/*
output:
testing
done
end:
*/

int
main()
{
	char *p, buf[40];

	puts("testing");

	memset(buf, 2, sizeof(buf));
	for (p = buf; p < &buf[40]; ++p)
		assert(*p == 2);

	memset(buf, 0, 0);
	for (p = buf; p < &buf[40]; ++p)
		assert(*p == 2);

	puts("done");

	return 0;
}