pebblisp/src/tokens.h

10 lines
163 B
C
Raw Normal View History

2016-04-18 04:25:36 -04:00
#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