json.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. #ifndef JSON_H
  2. #define JSON_H 1
  3. #include "jsmn.h"
  4. jsmntok_t *parse_json(const char *fn, char **map, size_t *size, int *len);
  5. void free_json(char *map, size_t size, jsmntok_t *tokens);
  6. int json_line(char *map, jsmntok_t *t);
  7. const char *json_name(jsmntok_t *t);
  8. int json_streq(char *map, jsmntok_t *t, const char *s);
  9. int json_len(jsmntok_t *t);
  10. extern int verbose;
  11. #include <stdbool.h>
  12. extern int eprintf(int level, int var, const char *fmt, ...);
  13. #define pr_fmt(fmt) fmt
  14. #define pr_err(fmt, ...) \
  15. eprintf(0, verbose, pr_fmt(fmt), ##__VA_ARGS__)
  16. #define pr_info(fmt, ...) \
  17. eprintf(1, verbose, pr_fmt(fmt), ##__VA_ARGS__)
  18. #define pr_debug(fmt, ...) \
  19. eprintf(2, verbose, pr_fmt(fmt), ##__VA_ARGS__)
  20. #ifndef roundup
  21. #define roundup(x, y) ( \
  22. { \
  23. const typeof(y) __y = y; \
  24. (((x) + (__y - 1)) / __y) * __y; \
  25. } \
  26. )
  27. #endif
  28. #endif