comparison dowa/dowa.h @ 260:1f9877b637e9

Add Copilot-powered cyberpunk JRPG chat Integrate the production JRPG chat with Seobeo streaming, Deita persistence, and a Bazel-managed Copilot SDK and LiteLLM inference stack. Co-authored-by: Copilot <[email protected]>
author MrJuneJune <mrjunejune@users.noreply.github.com>
date Wed, 05 Aug 2026 09:19:41 -0700
parents a2720eac50ce
children
comparison
equal deleted inserted replaced
259:667156fcd3e3 260:1f9877b637e9
232 DLAPI Dowa_JSON_Value Dowa_JSON_Parse(const char *json, int32 length, Dowa_Arena *p_arena); 232 DLAPI Dowa_JSON_Value Dowa_JSON_Parse(const char *json, int32 length, Dowa_Arena *p_arena);
233 DLAPI Dowa_JSON_Value *Dowa_JSON_Get(Dowa_JSON_Entry *map, const char *key); 233 DLAPI Dowa_JSON_Value *Dowa_JSON_Get(Dowa_JSON_Entry *map, const char *key);
234 DLAPI char *Dowa_JSON_Get_String(Dowa_JSON_Entry *map, const char *key); 234 DLAPI char *Dowa_JSON_Get_String(Dowa_JSON_Entry *map, const char *key);
235 DLAPI double Dowa_JSON_Get_Number(Dowa_JSON_Entry *map, const char *key); 235 DLAPI double Dowa_JSON_Get_Number(Dowa_JSON_Entry *map, const char *key);
236 DLAPI boolean Dowa_JSON_Get_Bool(Dowa_JSON_Entry *map, const char *key); 236 DLAPI boolean Dowa_JSON_Get_Bool(Dowa_JSON_Entry *map, const char *key);
237 DLAPI char *Dowa_JSON_Escape_String(
238 const char *value,
239 size_t length,
240 Dowa_Arena *p_arena);
237 241
238 // --- Math --- // 242 // --- Math --- //
239 DLAPI uint32 Dowa_Math_Random_Uint32(uint32 seed_number); 243 DLAPI uint32 Dowa_Math_Random_Uint32(uint32 seed_number);
240 244
241 #endif 245 #endif