sunchb_cson/demo/main.c

16 lines
171 B
C
Raw Normal View History

2020-06-09 00:18:16 +08:00
2019-12-25 15:13:45 +08:00
extern void test1();
extern void test2();
2020-06-09 10:37:17 +08:00
extern void test5();
2019-12-25 15:13:45 +08:00
#include "cson.h"
#include "stdio.h"
int main()
2019-12-25 15:13:45 +08:00
{
test1();
2020-05-07 15:21:56 +08:00
test2();
2020-06-09 10:37:17 +08:00
test5();
return 0;
2019-12-25 15:13:45 +08:00
}