slash

slash is a simple type-oriented programming language
Log | Files | Refs | README | LICENSE

commit bf50a1a701cd18b1ef3ad09847171ed8312ef7e1
parent bfed49ae6902cd426b248f777da69cefa7d7f848
Author: Mario Rosell R. Martinez <mario@mariorosell.es>
Date:   Sat,  4 Apr 2026 21:56:55 +0200

lex: no more magic numbers

Diffstat:
Mlex.h | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/lex.h b/lex.h @@ -6,6 +6,10 @@ #define LEX_H #include <stddef.h> +#include <stdint.h> + +#define MAX_LEXEME_SIZE 256 +#define MAX_PATH_SIZE 1024 enum toktype { TOK_EOF,