ref: 076b3b75c0f116421c17e7c2afd52b3079521ef4
dir: /read.h/
#pragma once value_t fl_read_sexpr(value_t f); bool fl_read_numtok(const char *tok, value_t *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)))