| 46 | typedef struct String String; |
| 47 | |
| 48 | typedef struct MemoryPoolString { |
| 49 | void* pool; /* raw backing block */ |
| 50 | size_t poolSize; /* total bytes available */ |
| 51 | size_t used; /* bytes handed out so far */ |
| 52 | void* spill; /* head of a linked list of heap fallbacks */ |
| 53 | } MemoryPoolString; |
| 54 | |
| 55 | struct String { |
| 56 | char* dataStr; |
nothing calls this directly
no outgoing calls
no test coverage detected