ref: c3ba64f6935322f09b6de5c2285544fd471c605d dir: /sys/src/libc/port/needsrcquote.c/
#include <u.h> #include <libc.h> int needsrcquote(int c) { if(c <= ' ') return 1; if(utfrune("`^#*[]=|\\?${}()'<>&;", c)) return 1; return 0; }