From 6c86e7fa91602e4863c95622934d45e383890156 Mon Sep 17 00:00:00 2001 From: "kr.angelov" Date: Thu, 9 Oct 2014 08:38:55 +0000 Subject: replace the hash maps in the abstract syntax with binary search tables --- src/runtime/c/pgf/pgf.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/runtime/c/pgf/pgf.h') diff --git a/src/runtime/c/pgf/pgf.h b/src/runtime/c/pgf/pgf.h index 16444985f..41a59c26c 100644 --- a/src/runtime/c/pgf/pgf.h +++ b/src/runtime/c/pgf/pgf.h @@ -40,7 +40,7 @@ GuString pgf_abstract_name(PgfPGF*); void -pgf_iter_languages(PgfPGF*, GuMapItor*, GuExn* err); +pgf_iter_languages(PgfPGF*, GuMapItor* itor, GuExn* err); PgfConcr* pgf_get_language(PgfPGF*, PgfCId lang); @@ -52,17 +52,17 @@ GuString pgf_language_code(PgfConcr* concr); void -pgf_iter_categories(PgfPGF* pgf, GuMapItor* fn, GuExn* err); +pgf_iter_categories(PgfPGF* pgf, GuMapItor* itor, GuExn* err); PgfCId pgf_start_cat(PgfPGF* pgf); void -pgf_iter_functions(PgfPGF* pgf, GuMapItor* fn, GuExn* err); +pgf_iter_functions(PgfPGF* pgf, GuMapItor* itor, GuExn* err); void pgf_iter_functions_by_cat(PgfPGF* pgf, PgfCId catname, - GuMapItor* fn, GuExn* err); + GuMapItor* itor, GuExn* err); PgfType* pgf_function_type(PgfPGF* pgf, PgfCId funname); -- cgit v1.2.3