From 7c5dd45eca377a3b675b6f0d4a9331bc3f971ac9 Mon Sep 17 00:00:00 2001 From: lemon Date: Sun, 22 Mar 2026 22:00:35 +0100 Subject: style: change uvlong -> u64int, vlong -> s64int Is much nicer. I don't know whether I want to do it for the other int types too. char and uchar are fine as bytes. u/short -> u/s16int, maybe. --- src/c_lex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/c_lex.h') diff --git a/src/c_lex.h b/src/c_lex.h index 57226ab..d436967 100644 --- a/src/c_lex.h +++ b/src/c_lex.h @@ -120,7 +120,7 @@ enum initlexer { int lex(Lexer *, Token *); int lexpeek(Lexer *, Token *); -enum typetag parsenumlit(uvlong *, double *, const Token *, bool ispp); +enum typetag parsenumlit(u64int *, double *, const Token *, bool ispp); enum initlexer initlexer(Lexer *, const char **err, const char *file); void lexerdump(Lexer *, WriteBuf *out); void lexerfreetemps(Lexer *); -- cgit v1.2.3