settings: Extend parser so we can parse settings from a string

This commit is contained in:
Tobias Brunner
2015-07-28 13:27:32 +02:00
parent 019ebdafae
commit 0dba2690c4
2 changed files with 45 additions and 0 deletions
@@ -191,3 +191,11 @@ static void include_files(parser_helper_t *ctx)
settings_parser_open_next_file(ctx);
}
/**
* Load the given string to be parsed next
*/
void settings_parser_load_string(parser_helper_t *ctx, const char *content)
{
settings_parser__scan_string(content, ctx->scanner);
}