2016-04-18 04:25:36 -04:00
|
|
|
#ifndef TOKENS_H
|
|
|
|
#define TOKENS_H
|
|
|
|
|
|
|
|
#include "pebblisp.h"
|
2020-05-09 23:51:55 -04:00
|
|
|
|
2016-04-18 04:25:36 -04:00
|
|
|
int isSingle(const char c);
|
|
|
|
int isDigit(const char c);
|
2020-08-02 16:16:26 -04:00
|
|
|
int isHex(const char c);
|
2021-12-13 10:47:35 -05:00
|
|
|
struct Slice *nf_tokenize(const char *input, struct Error *err);
|
2016-04-18 04:25:36 -04:00
|
|
|
|
|
|
|
#endif
|