summaryrefslogtreecommitdiff
path: root/src/ctype/toascii.c
blob: f0e48e8e91761585db15fbc6a6f2e5fa74496c23 (plain) (blame)
1
2
3
4
5
6
7
#include <ctype.h>

/* nonsense function that should NEVER be used! */
int toascii(int c)
{
	return c & 0x7f;
}