pebblisp/src/tokens.h

15 lines
196 B
C

#ifndef TOKENS_H
#define TOKENS_H
#include "pebblisp.h"
int isSingle(char c);
int isDigit(char c);
int isHex(char c);
struct Slice* nf_tokenize(const char* input, struct Error* err);
#endif