| 23 | const char *filename; |
| 24 | |
| 25 | static Attr attr_create(jsmntok_t *key, jsmntok_t *value) |
| 26 | { |
| 27 | Attr a = malloc(sizeof(*a)); |
| 28 | a->key = key; |
| 29 | a->value = value; |
| 30 | a->next = NULL; |
| 31 | return a; |
| 32 | } |
| 33 | |
| 34 | Attr attr_find(Attr attrs, const char *key) |
| 35 | { |
no outgoing calls
no test coverage detected