mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-08 18:52:50 -06:00
20 lines
325 B
C
20 lines
325 B
C
#ifndef TEXT_H
|
|
#define TEXT_H
|
|
|
|
PGF_INTERNAL_DECL
|
|
int textcmp(PgfText *t1, PgfText *t2);
|
|
|
|
PGF_INTERNAL_DECL
|
|
PgfText* textdup(PgfText *t1);
|
|
|
|
PGF_INTERNAL_DECL
|
|
ref<PgfText> textdup_db(PgfText *t1);
|
|
|
|
PGF_API uint32_t
|
|
pgf_utf8_decode(const uint8_t** src_inout);
|
|
|
|
PGF_API void
|
|
pgf_utf8_encode(uint32_t ucs, uint8_t** buf);
|
|
|
|
#endif
|