Implemented C variadic arguments

This commit is contained in:
Krzosa Karol
2023-04-14 22:22:34 +02:00
parent fdcdc8ea86
commit 8c4975db35
9 changed files with 74 additions and 15 deletions

View File

@@ -431,7 +431,7 @@ lex__stream(Core_Ctx *lexer) {
case '.': {
if (lexc(s) == '.') {
lex_advance(s);
if (lexci(s, 1) == '.') {
if (lexc(s) == '.') {
lex_advance(s);
t.kind = TK_ThreeDots;
}