Searched defs:StrAccum (Results 1 – 1 of 1) sorted by relevance
6549 typedef struct StrAccum StrAccum; typedef8947 struct StrAccum { struct8948 char *zBase; /* A base allocation. Not from malloc. */8949 char *zText; /* The string collected so far */8950 int nChar; /* Length of the string so far */8951 int nAlloc; /* Amount of space allocated in zText */8952 int mxAlloc; /* Maximum allowed string length */8953 u8 mallocFailed; /* Becomes true if any memory allocation fails */8954 u8 useMalloc; /* True if zText is enlargable using realloc */8955 u8 tooBig; /* Becomes true if string size exceeds limits */