Searched defs:JsonString (Results 1 – 1 of 1) sorted by relevance
59 typedef struct JsonString JsonString; typedef67 struct JsonString { struct68 sqlite3_context *pCtx; /* Function context - put error messages here */69 char *zBuf; /* Append JSON content here */70 u64 nAlloc; /* Bytes of storage available in zBuf[] */71 u64 nUsed; /* Bytes of zBuf[] currently used */72 u8 bStatic; /* True if zBuf is static space */73 u8 bErr; /* True if an error has been encountered */74 char zSpace[100]; /* Initial static space */