aboutsummaryrefslogtreecommitdiffstats
path: root/mempset.c
blob: 4c793ac0e7254f3ab800f8ad9224d76de0966505 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST


extern inline void *libsimple_mempset(void *, int, size_t);


#else
#include "test.h"

int
main(void)
{
	char buf[100];

	stpcpy(buf, "abc123");
	assert(!strcmpnul(libsimple_mempset(buf, '.', 3), "123"));
	assert(!strcmp(buf, "...123"));

	return 0;
}

#endif