diff options
Diffstat (limited to 'src/multibyte/btowc.c')
-rw-r--r-- | src/multibyte/btowc.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/multibyte/btowc.c b/src/multibyte/btowc.c new file mode 100644 index 00000000..9d2c3b16 --- /dev/null +++ b/src/multibyte/btowc.c @@ -0,0 +1,7 @@ +#include <stdio.h> +#include <wchar.h> + +wint_t btowc(int c) +{ + return c<128U ? c : EOF; +} |