json_queue.h 192 B

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