*** empty log message ***
[gnulib.git] / lib / unicodeio.h
1 #ifndef UNICODEIO_H
2 # define UNICODEIO_H
3
4 # include <stdio.h>
5
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
13
14 /* Outputs the Unicode character CODE to the output stream STREAM.  */
15 extern void print_unicode_char PARAMS((FILE *stream, unsigned int code));
16
17 #endif