Convert codebase to C89 compatibility and update test scripts
This commit is contained in:
+9
-9
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user