]> rtime.felk.cvut.cz Git - coffee/mt-apps.git/blob - json_helpers.h
key
[coffee/mt-apps.git] / json_helpers.h
1 #ifndef JSON_HELPERS_H
2 #define JSON_HELPERS_H
3
4 // really simple JSON helpers
5 #define JSON_START()    dprintf(fd,"{")
6 #define JSON_NUM(NAME)  dprintf(fd,"\"" #NAME "\":%d", NAME) //see the int?
7 #define JSON_NEXT()     dprintf(fd,",")
8 #define JSON_STR(NAME)  dprintf(fd,"\"" #NAME "\":\"%s\"", NAME)
9 #define JSON_CHAR(NAME) dprintf(fd,"\"" #NAME "\":\"%c\"", NAME)
10 #define JSON_END()      dprintf(fd,"}\n")
11
12 #endif