#ifndef TOKENS_H #define TOKENS_H #include "pebblisp.h" int isSingle(const char c); int isDigit(const char c); int isHex(const char c); struct Slice *nf_tokenize(const char *input, char **err); #endif