diff options
author | pommicket <pommicket@gmail.com> | 2025-09-15 19:58:56 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-15 19:58:56 -0400 |
commit | aafaca51cfbdc66a6ff9af52121470f59b9559ac (patch) | |
tree | 3cf3d43fca5dba8cb9cdba733b258c9c9f57b319 /pom.c | |
parent | d5cf3acb7a45b7e46bf51dc6a66030d7bc986597 (diff) |
Check for leaks in `make test`
Diffstat (limited to 'pom.c')
-rw-r--r-- | pom.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -904,16 +904,6 @@ conf_item_cmp_qsort(const void *va, const void *vb) { return strcmp(item_a->key, item_b->key); } -/* -// Returns true if `descendant` starts with `ancestor.`. -static bool -is_descendant(const char *ancestor, const char *descendant) { - size_t ancestor_len = strlen(ancestor); - return memcmp(ancestor, descendant, ancestor_len) == 0 - && descendant[ancestor_len] == '.'; -} -*/ - static size_t conf_binary_search(const pom_conf *conf, const char *key, char nxt_char, bool *found) { size_t lo = 0; |