init commit

This commit is contained in:
2025-04-13 21:48:15 +03:00
commit 23255e9121
192 changed files with 12200 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#include <stdio.h>
#include <stdlib.h>
#include "cJSON.h"
void
task1()
{
cJSON *item;
char *json = "{"
"\"a\" : true, "
"\"b\" : { "
"\"c\":\"stro\\\"ka\""
"}"
"}";
item = cJSON_Parse(json);
cJSON_Delete(item);
}
int
main(int argc, char **argv)
{
task1();
return 0;
}