From bafcf13695f80dac6d9be87b65ad6156ddc3d621 Mon Sep 17 00:00:00 2001 From: Randy Palamar Date: Fri, 5 Dec 2025 12:41:31 -0700 Subject: delete functions which were exposed as unused --- map.h | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'map.h') diff --git a/map.h b/map.h index 490b4d9..8d4139c 100644 --- a/map.h +++ b/map.h @@ -34,13 +34,6 @@ VIS_INTERNAL void *map_first(const Map *map, const char **key); * Otherwise ``NULL``. */ VIS_INTERNAL void *map_closest(const Map *map, const char *prefix); -/** - * Check whether the map contains the given prefix, or - * whether it can be extended to match a key of a map element. - * @param map The map to check. - * @param prefix The prefix to search for. - */ -VIS_INTERNAL bool map_contains(const Map *map, const char *prefix); /** * Store a key value pair in the map. * @param map The map to store the key-value pair in. @@ -97,13 +90,5 @@ VIS_INTERNAL void map_clear(Map *map); * @param map The map to free. */ VIS_INTERNAL void map_free(Map *map); -/** - * Call `free(3)` for every map element, then free the map itself. - * @param map The map to free its elements and itself. - * @rst - * .. warning:: Assumes map elements to be pointers. - * @endrst - */ -VIS_INTERNAL void map_free_full(Map *map); #endif -- cgit v1.2.3