summaryrefslogtreecommitdiff
path: root/lib/unicodeio.h
blob: f4bd1b7f700984a4b41857b80236f1a4c560f165 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef UNICODEIO_H
# define UNICODEIO_H

# include <stdio.h>

# ifndef PARAMS
#  if defined PROTOTYPES || (defined __STDC__ && __STDC__)
#   define PARAMS(Args) Args
#  else
#   define PARAMS(Args) ()
#  endif
# endif

/* Outputs the Unicode character CODE to the output stream STREAM.  */
extern void print_unicode_char PARAMS((FILE *stream, unsigned int code));

#endif