json_queue.h 276 B

1234567891011121314151617
  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. <<<<<<< HEAD
  9. char *p;
  10. =======
  11. char *p;
  12. >>>>>>> 841e7987800910a57cf5275c331a8acbfec24198
  13. } StringInfo;
  14. #endif