0028-strxfrm.c - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
0028-strxfrm.c (295B)
---
1 #include <assert.h>
2 #include <stdio.h>
3 #include <string.h>
4
5 /*
6 output:
7 testing
8 done
9 end:
10 */
11
12 int
13 main()
14 {
15 char buf[40];
16 size_t n;
17
18 puts("testing");
19
20 assert(strxfrm(buf, "test", 40) == 4);
21 assert(strxfrm(buf, "", 0) == 0);
22 assert(strxfrm(NULL, "abc", 0) > 0);
23
24 puts("done");
25
26 return 0;
27 }