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
89
90
91
92
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST
extern inline char *libsimple_strnmove(char *, const char *, size_t);
#else
#include "test.h"
int
main(void)
{
char buf[1024];
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
strcpy(buf, "hello world");
assert(libsimple_strnmove(&buf[3], buf, SIZE_MAX) == &buf[3]);
assert(!strcmp(buf, "helhello world"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
strcpy(buf, "hello world");
assert(libsimple_strnmove(buf, &buf[3], SIZE_MAX) == buf);
assert(!strcmp(buf, "lo world"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
strcpy(buf, "hello world");
assert(libsimple_strnmove(buf, buf, SIZE_MAX) == buf);
assert(!strcmp(buf, "hello world"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
strcpy(buf, "hello world");
assert(libsimple_strnmove(&buf[3], buf, 12) == &buf[3]);
assert(!strcmp(buf, "helhello world"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
strcpy(buf, "hello world");
assert(libsimple_strnmove(buf, &buf[3], 9) == buf);
assert(!strcmp(buf, "lo world"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
strcpy(buf, "hello world");
assert(libsimple_strnmove(buf, buf, 12) == buf);
assert(!strcmp(buf, "hello world"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
strcpy(buf, "hello world");
assert(libsimple_strnmove(&buf[3], buf, 11) == &buf[3]);
assert(!strncmp(buf, "helhello worldx", 15));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
strcpy(buf, "hello world");
assert(libsimple_strnmove(buf, &buf[3], 8) == buf);
assert(!strcmp(buf, "lo worldrld"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
strcpy(buf, "hello world");
assert(libsimple_strnmove(buf, buf, 11) == buf);
assert(!strcmp(buf, "hello world"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
strcpy(buf, "hello world");
assert(libsimple_strnmove(&buf[3], buf, 2) == &buf[3]);
assert(!strcmp(buf, "helhe world"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
strcpy(buf, "hello world");
assert(libsimple_strnmove(buf, &buf[3], 2) == buf);
assert(!strcmp(buf, "lollo world"));
memset(buf, 'x', sizeof(buf));
buf[sizeof(buf) - 1] = '\0';
strcpy(buf, "hello world");
assert(libsimple_strnmove(buf, buf, 2) == buf);
assert(!strcmp(buf, "hello world"));
return 0;
}
#endif
|