diff options
Diffstat (limited to 'include/fitz/base.h')
-rw-r--r-- | include/fitz/base.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/fitz/base.h b/include/fitz/base.h index da0132d4..562bb1df 100644 --- a/include/fitz/base.h +++ b/include/fitz/base.h @@ -21,6 +21,12 @@ #define STRIDE(n, bcp) (((bpc) * (n) + 7) / 8) +int chartorune(int *rune, char *str); +int runetochar(char *str, int *rune); +int runelen(long c); +int runenlen(int *r, int nrune); +int fullrune(char *str, int n); + typedef struct fz_error_s fz_error; struct fz_error_s |