mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-12 06:57:33 +02:00
10 lines
208 B
C
10 lines
208 B
C
#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
|