10 lines
163 B
C
10 lines
163 B
C
|
#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
|