comparison dowa/d_string.c @ 264:04fee26ecce0

add authenticated JRPG conversation platform Add reusable auth/session storage, owned conversation recovery, guest quotas, admin workflows, URL-routed conversation UI, mobile frame support, and parallel browser acceptance. Co-authored-by: Copilot <[email protected]>
author MrJuneJune <me@mrjunejune.com>
date Fri, 07 Aug 2026 07:34:12 -0700
parents 1f9877b637e9
children
comparison
equal deleted inserted replaced
263:ee04e4e69fed 264:04fee26ecce0
365 val.type = DOWA_JSON_NULL; 365 val.type = DOWA_JSON_NULL;
366 *pos += 4; 366 *pos += 4;
367 return val; 367 return val;
368 } 368 }
369 369
370 /* Unrecognised token — advance one byte to guarantee progress. */
371 (*pos)++;
370 val.type = DOWA_JSON_NULL; 372 val.type = DOWA_JSON_NULL;
371 return val; 373 return val;
372 } 374 }
373 375
374 Dowa_JSON_Value Dowa_JSON_Parse(const char *json, int32 length, Dowa_Arena *p_arena) 376 Dowa_JSON_Value Dowa_JSON_Parse(const char *json, int32 length, Dowa_Arena *p_arena)