make-it-quick/config/check_strtok_r.c

10 lines
127 B
C
Raw Normal View History

2017-11-24 18:44:05 +08:00
#include <string.h>
int main()
{
char *brkb;
char strbuf[] = "abc";
strtok_r(strbuf, ":", &brkb);
return 0;
}