summaryrefslogtreecommitdiff
path: root/src/map.h
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2015-02-13 22:59:44 -0500
committerAdrian Thurston <thurston@complang.org>2015-02-13 22:59:44 -0500
commit3151be71170cd2ac01567d6277ccf5019a647bc9 (patch)
treea980223982b2fff85c6ae2d177cf11404270ce6e /src/map.h
parent774ace89051bddee3197870aa0a90afde00bd1ad (diff)
downloadcolm-3151be71170cd2ac01567d6277ccf5019a647bc9.tar.gz
implemented vmap find
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map.h b/src/map.h
index 5599dc1d..6c7cce66 100644
--- a/src/map.h
+++ b/src/map.h
@@ -69,7 +69,8 @@ void colm_map_detach( Program *prg, Map *map, MapEl *mapEl );
MapEl *colm_map_find( Program *prg, Map *map, Tree *key );
MapEl *colm_vmap_insert( Program *prg, Map *map, Struct *key, Struct *value );
-MapEl *colm_vmap_remove( Program *prg, Map *map, Struct *key );
+MapEl *colm_vmap_remove( Program *prg, Map *map, Tree *key );
+Tree *colm_map_iter_advance( Program *prg, Tree ***psp, ListIter *iter );
#if defined(__cplusplus)
}