Linux Audio

Check our new training course

Loading...
1
2
3
4
5
6
7
#include <ctype.h>
#undef isascii

int isascii(int c)
{
	return !(c&~0x7f);
}