projects
/
YACASL2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
ソースコードの推敲
[YACASL2.git]
/
test
/
unit
/
strndup_chk
/
cmd.c
1
#include <stdio.h>
2
#include "cmem.h"
3
4
int main(){
5
char *dst, *src = "abcdefghijklmnopqrstuvwxyz";
6
size_t len = 10;
7
8
dst = strndup_chk(src, len, "strndup_chk unit test");
9
printf("%s\n", dst);
10
FREE(dst);
11
return 0;
12
}