Convert codebase to C89 compatibility and update test scripts

This commit is contained in:
2026-04-29 10:20:30 +02:00
parent 189c21667b
commit 146aa4d9d1
14 changed files with 287 additions and 192 deletions
+9 -9
View File
@@ -9,20 +9,20 @@
#include <stddef.h>
typedef struct {
/// @brief The name of the file where the token was found.
/* @brief The name of the file where the token was found. */
char* filename;
/// @brief The entire line of text where the token was found.
String line_text;
/* @brief The entire line of text where the token was found. */
String line_text;
/// @brief The line number where the token was found.
int line;
/* @brief The line number where the token was found. */
int line;
/// @brief The starting column number where the token was found.
int column_start;
/* @brief The starting column number where the token was found. */
int column_start;
/// @brief The ending column number where the token was found.
int column_end;
/* @brief The ending column number where the token was found. */
int column_end;
} Location;
#endif