shithub: sl

ref: 1820b6e70a22e92f69dab14a1d2368b98b96d501
dir: /src/read.h/

View raw version
#pragma once

sl_v sl_read_sexpr(sl_v f);
bool sl_read_numtok(const char *tok, sl_v *pval, int base);

// defines which characters are ordinary symbol characters.
// exceptions are '.', which is an ordinary symbol character
// unless it's the only character in the symbol, and '#', which is
// an ordinary symbol character unless it's the first character.
#define symchar(c) (!strchr("()[]{}'\";`,\\| \a\b\f\n\r\t\v", (c)))