diff options
author | Jim Meyering <jim@meyering.net> | 2000-03-01 13:22:57 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-03-01 13:22:57 +0000 |
commit | 77ec117299ea3817acd0c1a439b1f28b735f86bd (patch) | |
tree | 15e0d929013e67ceabe0421e159f089fa565e686 /lib | |
parent | ce4a63537c342d516c9402ff71ac2922193e136f (diff) | |
download | coreutils-77ec117299ea3817acd0c1a439b1f28b735f86bd.tar.xz |
New file from Bruno.
filter through cppi
Diffstat (limited to 'lib')
-rw-r--r-- | lib/unicodeio.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/unicodeio.h b/lib/unicodeio.h new file mode 100644 index 000000000..ae6b939a8 --- /dev/null +++ b/lib/unicodeio.h @@ -0,0 +1,9 @@ +#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 |