Converter JSON → Struct ANSI-C language

(add 1 byte for the NULL terminator of the string)


#include <stdio.h>

#include "json_keys.h" 

int main() {
    struct Root_s root;
    printf("sizeof(Root_s) = %zu\n", sizeof(struct Root_s));
    return 0;
}