/* unicutils.c */

#ifndef unicutils_H
#define unicutils_H

size_t strlen_u(const zword_t *);
zword_t *strstr_u(const zword_t *a, const zword_t *b);
zword_t *strcpy_u(zword_t *a, const zword_t *b);
zword_t *strncpy_u(zword_t *a, const zword_t *b, size_t n);
void font_paint_u(unsigned char, const zword_t *, unsigned int,
                  int, int, struct font_paint_block *,
                  struct os_trfm *,
                  int);
unsigned tolower_u(unsigned);
#endif
