Files
42_EXT_05_computorv1/headers/lexer.h
2026-05-01 10:42:45 +02:00

31 lines
563 B
C

#ifndef LEXER_H
#define LEXER_H
#include "libft.h"
#include "errors.h"
#include <stdbool.h>
typedef enum
{
TOKEN_VARIABLE, // x, y, etc.
TOKEN_NUMBER, // int or double -> all converted into double
TOKEN_POWER, // ^ or **
TOKEN_SIGN, // + or -
TOKEN_FACTOR, // * or /
TOKEN_EQUAL, // =
TOKEN_END // null (end of input)
} token_type;
typedef struct
{
token_type type;
union
{
char value_char;
double value_double;
};
} token;
int lexerize(const char *input, token *tokens);
#endif