4 lines
56 B
C
4 lines
56 B
C
int isgraph(int c)
|
|
{
|
|
return (unsigned)c-0x21 < 0x5e;
|
|
}
|
int isgraph(int c)
|
|
{
|
|
return (unsigned)c-0x21 < 0x5e;
|
|
}
|