1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-25 10:16:53 +02:00
Files
coreutils/lib/unicodeio.h
T

18 lines
373 B
C
Raw Normal View History

2000-03-01 13:22:57 +00:00
#ifndef UNICODEIO_H
# define UNICODEIO_H
# include <stdio.h>
2000-03-05 10:21:58 +00:00
# ifndef PARAMS
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
# define PARAMS(Args) Args
# else
# define PARAMS(Args) ()
# endif
# endif
2000-03-01 13:22:57 +00:00
/* Outputs the Unicode character CODE to the output stream STREAM. */
2000-03-05 10:21:58 +00:00
extern void print_unicode_char PARAMS((FILE *stream, unsigned int code));
2000-03-01 13:22:57 +00:00
#endif