#include"script.h" int main() { chr c = 'a'; bool r = isseparator( c, " ;\n/\\.," ); // false c = ';'; r = isseparator( c, " ;\n/\\.," ); // true }