pebblisp/src/tokens.h

10 lines
166 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);
2020-05-04 18:14:41 -04:00
struct Slice *nf_tokenize(const char *input);
2016-04-18 04:25:36 -04:00
#endif