mirror of
https://git.suckless.org/9base
synced 2025-08-27 02:13:48 -07:00
13 lines
151 B
C
13 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;
|
|
}
|