diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/unicodeio.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/unicodeio.h b/lib/unicodeio.h new file mode 100644 index 000000000..ae6b939a8 --- /dev/null +++ b/lib/unicodeio.h @@ -0,0 +1,9 @@ +#ifndef UNICODEIO_H +# define UNICODEIO_H + +# include <stdio.h> + +/* Outputs the Unicode character CODE to the output stream STREAM. */ +extern void print_unicode_char (FILE *stream, unsigned int code); + +#endif |