1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST
extern inline char *libsimple_strnccpy(char *restrict, const char *restrict, int, size_t);
#else
#include "test.h"
int
main(void)
{
char buf[1024];
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
assert(libsimple_strnccpy(buf, "hello", '\0', 1024) == &buf[6]);
assert(!strcmp(buf, "hello"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
assert(libsimple_strnccpy(buf, "hello", 'o', 1024) == &buf[5]);
assert(!strcmp(buf, "hello"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
assert(libsimple_strnccpy(buf, "hello", 'l', 1024) == &buf[3]);
assert(!strcmp(buf, "hel"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
assert(libsimple_strnccpy(buf, "hello", 'x', 1024) == NULL);
assert(!strcmp(buf, "hello"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
assert(libsimple_strnccpy(buf, "hello", '\0', 6) == &buf[6]);
assert(!strcmp(buf, "hello"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
assert(libsimple_strnccpy(buf, "hello", 'o', 6) == &buf[5]);
assert(!strcmp(buf, "hello"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
assert(libsimple_strnccpy(buf, "hello", 'l', 6) == &buf[3]);
assert(!strcmp(buf, "hel"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
assert(libsimple_strnccpy(buf, "hello", 'x', 6) == NULL);
assert(!strcmp(buf, "hello"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
assert(libsimple_strnccpy(buf, "hello", '\0', 5) == NULL);
assert(!strncmp(buf, "hellox", 6));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
assert(libsimple_strnccpy(buf, "hello", 'o', 5) == &buf[5]);
assert(!strncmp(buf, "hellox", 6));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
assert(libsimple_strnccpy(buf, "hello", 'l', 5) == &buf[3]);
assert(!strcmp(buf, "hel"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
assert(libsimple_strnccpy(buf, "hello", 'x', 5) == NULL);
assert(!strncmp(buf, "hellox", 6));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
assert(libsimple_strnccpy(buf, "hello", 'o', 3) == NULL);
assert(!strncmp(buf, "helx", 4));
return 0;
}
#endif
|