pebblisp/src/tokens.h

12 lines
211 B
C
Raw Normal View History

2016-04-18 04:25:36 -04:00
#ifndef TOKENS_H
#define TOKENS_H
#include "pebblisp.h"
2016-04-18 04:25:36 -04:00
int isSingle(const char c);
int isDigit(const char c);
int isHex(const char c);
struct Slice *nf_tokenize(const char *input, struct Error *err);
2016-04-18 04:25:36 -04:00
#endif