| 63 | } |
| 64 | |
| 65 | void JsonAllocator::deallocate() { |
| 66 | while (head) { |
| 67 | Zone *next = head->next; |
| 68 | free(head); |
| 69 | head = next; |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | static inline bool isspace(char c) { |
| 74 | return c == ' ' || (c >= '\t' && c <= '\r'); |
nothing calls this directly
no outgoing calls
no test coverage detected