MCPcopy Create free account
hub / github.com/KaisenAmin/c_std / MemoryPoolString

Class MemoryPoolString

string/std_string.h:48–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46typedef struct String String;
47
48typedef 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
55struct String {
56 char* dataStr;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected