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