MCPcopy Create free account
hub / github.com/AHXR/ghost / ini_parse_string

Function ini_parse_string

_src/server/ini.cpp:237–244  ·  view source on GitHub ↗

See documentation in header file. */

Source from the content-addressed store, hash-verified

235
236/* See documentation in header file. */
237int ini_parse_string(const char* string, ini_handler handler, void* user) {
238 ini_parse_string_ctx ctx;
239
240 ctx.ptr = string;
241 ctx.num_left = strlen(string);
242 return ini_parse_stream((ini_reader)ini_reader_string, &ctx, handler,
243 user);
244}

Callers

nothing calls this directly

Calls 1

ini_parse_streamFunction · 0.85

Tested by

no test coverage detected