Searched refs:JSON_COMMA (Results 1 - 3 of 3) sorted by relevance
/systemd/src/basic/ |
H A D | json.h | 32 JSON_COMMA, enumerator in enum:__anon16
|
H A D | json.c | 596 return JSON_COMMA; 715 if (var->value.integer != JSON_COMMA)
|
/systemd/src/test/ |
H A D | test-json.c | 188 test_one("{\"foo\" : [true, false]}", JSON_OBJECT_OPEN, JSON_STRING, "foo", JSON_COLON, JSON_ARRAY_OPEN, JSON_BOOLEAN, true, JSON_COMMA, JSON_BOOLEAN, false, JSON_ARRAY_CLOSE, JSON_OBJECT_CLOSE, JSON_END); 196 test_one("[1, 2]", JSON_ARRAY_OPEN, JSON_INTEGER, (intmax_t) 1, JSON_COMMA, JSON_INTEGER, (intmax_t) 2, JSON_ARRAY_CLOSE, JSON_END);
|
Completed in 13 milliseconds