.
[coreutils.git] / lib / unicodeio.h
blobf4bd1b7f700984a4b41857b80236f1a4c560f165
1 #ifndef UNICODEIO_H
2 # define UNICODEIO_H
4 # include <stdio.h>
6 # ifndef PARAMS
7 # if defined PROTOTYPES || (defined __STDC__ && __STDC__)
8 # define PARAMS(Args) Args
9 # else
10 # define PARAMS(Args) ()
11 # endif
12 # endif
14 /* Outputs the Unicode character CODE to the output stream STREAM. */
15 extern void print_unicode_char PARAMS((FILE *stream, unsigned int code));
17 #endif