From ed5d0269ace71af4e0fba36ee39c00cccde16acf Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Wed, 25 Jan 2023 23:35:25 +0100 Subject: [PATCH] PGF_INTERNAL->PGF_INTERNAL_DECL --- src/runtime/c/pgf/text.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/runtime/c/pgf/text.h b/src/runtime/c/pgf/text.h index ff0100484..7eeb45a2f 100644 --- a/src/runtime/c/pgf/text.h +++ b/src/runtime/c/pgf/text.h @@ -17,6 +17,9 @@ void texticmp(PgfText *t1, PgfText *t2, int res[2]); PGF_INTERNAL_DECL bool textstarts(PgfText *t, PgfText *prefix); +PGF_INTERNAL_DECL +PgfText* string2text(const char *s); + PGF_INTERNAL_DECL PgfText* textdup(PgfText *t1); @@ -26,7 +29,7 @@ ref textdup_db(PgfText *t1); PGF_INTERNAL_DECL ref textdup_db(ref t1); -PGF_INTERNAL +PGF_INTERNAL_DECL void text_db_release(ref text); PGF_API uint32_t @@ -41,7 +44,7 @@ uint32_t pgf_utf8_to_upper(uint32_t c); PGF_INTERNAL_DECL bool pgf_utf8_is_space(uint32_t c); -PGF_INTERNAL +PGF_INTERNAL_DECL bool pgf_utf8_is_digit(uint32_t c); #endif