summaryrefslogtreecommitdiff
path: root/src/multibyte/wctob.c
blob: d6353ee17935779719cc78eb0e730b0eb0265570 (plain) (blame)
1
2
3
4
5
6
7
8
#include <stdio.h>
#include <wchar.h>

int wctob(wint_t c)
{
	if (c < 128U) return c;
	return EOF;
}