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
|
|
|
|
2022-03-19 22:25:20 -04:00
|
|
|
int isSingle(char c);
|
2022-01-07 16:55:03 -05:00
|
|
|
|
2022-03-19 22:25:20 -04:00
|
|
|
int isDigit(char c);
|
2022-01-07 16:55:03 -05:00
|
|
|
|
2022-03-19 22:25:20 -04:00
|
|
|
int isHex(char c);
|
2022-01-07 16:55:03 -05:00
|
|
|
|
|
|
|
struct Slice* nf_tokenize(const char* input, struct Error* err);
|
2016-04-18 04:25:36 -04:00
|
|
|
|
|
|
|
#endif
|