summaryrefslogtreecommitdiff
path: root/src/runtime/c/pgf
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2014-03-04 10:13:23 +0000
committerkr.angelov <kr.angelov@gmail.com>2014-03-04 10:13:23 +0000
commitc197de7fbd0ed368d112f7c211454e7d26d4eb94 (patch)
tree4a2a74c84e798b51fdf988ab393557a24745e220 /src/runtime/c/pgf
parentddf36bcd6285ba8b1ca154b00258f53cc49a3277 (diff)
rename pgf_lzr_linearize_table to pgf_lzr_get_table
Diffstat (limited to 'src/runtime/c/pgf')
-rw-r--r--src/runtime/c/pgf/linearizer.c4
-rw-r--r--src/runtime/c/pgf/linearizer.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/runtime/c/pgf/linearizer.c b/src/runtime/c/pgf/linearizer.c
index 0f8473639..626ac842a 100644
--- a/src/runtime/c/pgf/linearizer.c
+++ b/src/runtime/c/pgf/linearizer.c
@@ -922,8 +922,8 @@ pgf_lzr_linearize_simple(PgfConcr* concr, PgfCncTree ctree,
}
void
-pgf_lzr_linearize_table(PgfConcr* concr, PgfCncTree ctree,
- size_t* n_lins, GuString** labels)
+pgf_lzr_get_table(PgfConcr* concr, PgfCncTree ctree,
+ size_t* n_lins, GuString** labels)
{
static GuString s_label = "s";
diff --git a/src/runtime/c/pgf/linearizer.h b/src/runtime/c/pgf/linearizer.h
index b1d96b027..fa183a1bb 100644
--- a/src/runtime/c/pgf/linearizer.h
+++ b/src/runtime/c/pgf/linearizer.h
@@ -75,8 +75,8 @@ pgf_lzr_linearize_simple(PgfConcr* concr, PgfCncTree ctree,
void
-pgf_lzr_linearize_table(PgfConcr* concr, PgfCncTree ctree,
- size_t* n_lins, GuString** labels);
+pgf_lzr_get_table(PgfConcr* concr, PgfCncTree ctree,
+ size_t* n_lins, GuString** labels);
#endif
#ifdef PGF_PARSER_H_