ref: 34238e0feb181a0c120561486d4c86b054d112bc
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 == '%'; }