scc
simple C compiler
git clone
git://git.2f30.org/scc
Log
|
Files
|
Refs
|
README
|
LICENSE
isblank.c (58B)
1
int
2
isblank(int c)
3
{
4
return (c == ' ') || (c == '\t');
5
}