ref: 3c27f041321b91dbf2bfd0ab9e4865e03854cd68
dir: /misc.c/
#include <u.h> #include <libc.h> #include "pdf.h" /* 7.2.2 whitespace */ int isws(char c) { return /* \0 is missing on purpose */ c == '\t' || c == '\n' || c == '\f' || c == '\r' || c == ' '; } /* 7.2.2 delimeters */ int isdelim(char c) { return c == '(' || c == ')' || c == '<' || c == '>' || c == '[' || c == ']' || c == '{' || c == '}' || c == '/' || c == '%'; }