-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclib.json
43 lines (43 loc) · 1.02 KB
/
clib.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "kv_parse",
"version": "1.1.1",
"repo": "mofosyne/kv_parse.c",
"description": "Composible Key Value Parser C library for parsing key value strings with zero-copy and no mallocs.",
"license": "MIT",
"src": [
"kv_parse.c",
"kv_parse.h",
"kv_parse_buffer.c",
"kv_parse_buffer.h"
],
"flags": [
{
"name": "Whitespace Skip",
"disable flag": "KV_PARSE_DISABLE_WHITESPACE_SKIP",
"description": "Ignores spaces and tabs around keys and values"
},
{
"name": "Disable Quoted String",
"disable flag": "KV_PARSE_DISABLE_QUOTED_STRINGS",
"description": "Handles values enclosed in single (`'`) or double (`\"`) quotes"
}
],
"profiles": [
{
"name": "File Stream Only",
"src": [
"kv_parse.c",
"kv_parse.h"
],
"description": "Use File Stream Only"
},
{
"name": "Buffer Only",
"src": [
"kv_parse_buffer.c",
"kv_parse_buffer.h"
],
"description": "Use Buffer Only"
}
]
}