json_queue.h 188 B

12345678910111213
  1. #ifndef __JSON_QUEUE_H
  2. #define __JSON_QUEUE_H
  3. #include "includes.h"
  4. #include "string.h"
  5. void creat_queue();
  6. typedef struct {
  7. char *p;
  8. uint32_t stringLength;
  9. } StringInfo;
  10. #endif