mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
12 lines
151 B
C
12 lines
151 B
C
#include <u.h>
|
|
#include <libc.h>
|
|
|
|
int
|
|
needsrcquote(int c)
|
|
{
|
|
if(c <= ' ')
|
|
return 1;
|
|
if(strchr("`^#*[]=|\\?${}()'<>&;", c))
|
|
return 1;
|
|
return 0;
|
|
}
|