提交 46e3724a 编写于 作者: D Dave Gamble

clean up test.c


git-svn-id: http://svn.code.sf.net/p/cjson/code@54 e3330c51-1366-4df0-8b21-3ccf24e3d50e
上级 15adf712
...@@ -44,7 +44,7 @@ void doit(char *text) ...@@ -44,7 +44,7 @@ void doit(char *text)
void dofile(char *filename) void dofile(char *filename)
{ {
FILE *f=fopen(filename,"rb");fseek(f,0,SEEK_END);long len=ftell(f);fseek(f,0,SEEK_SET); FILE *f=fopen(filename,"rb");fseek(f,0,SEEK_END);long len=ftell(f);fseek(f,0,SEEK_SET);
char *data=malloc(len+1);fread(data,1,len,f);fclose(f); char *data=(char*)malloc(len+1);fread(data,1,len,f);fclose(f);
doit(data); doit(data);
free(data); free(data);
} }
...@@ -69,7 +69,7 @@ void create_objects() ...@@ -69,7 +69,7 @@ void create_objects()
cJSON_AddFalseToObject (fmt,"interlace"); cJSON_AddFalseToObject (fmt,"interlace");
cJSON_AddNumberToObject(fmt,"frame rate", 24); cJSON_AddNumberToObject(fmt,"frame rate", 24);
out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out); /* Print to text, Delete the cJSON, print it, release the string. out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out); /* Print to text, Delete the cJSON, print it, release the string. */
/* Our "days of the week" array: */ /* Our "days of the week" array: */
const char *strings[7]={"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"}; const char *strings[7]={"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"};
...@@ -142,7 +142,7 @@ int main (int argc, const char * argv[]) { ...@@ -142,7 +142,7 @@ int main (int argc, const char * argv[]) {
doit(text4); doit(text4);
doit(text5); doit(text5);
/* Parse standard testfiles: /* Parse standard testfiles: */
/* dofile("../../tests/test1"); */ /* dofile("../../tests/test1"); */
/* dofile("../../tests/test2"); */ /* dofile("../../tests/test2"); */
/* dofile("../../tests/test3"); */ /* dofile("../../tests/test3"); */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册