blob: 0df4d3b6d886993ad8c779f0063b5b55869a4d90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef CONVERT_H
#define CONVERT_H
#include "../defines.h"
#include "../data/stack.h"
#include "token.h"
int convert_to_integer_get(Token *p_token);
void convert_to_integer(Token *p_token);
void convert_to_double(Token *p_token);
void convert_to_string(Token *p_token);
void convert_to_array(Token *p_token);
void convert_to_tt(Token *p_token, TokenType tt);
TokenType convert_to_highest(Token *p_token1, Token *p_token2);
TokenType convert_function_arg_types_to_highest(Stack *p_stack_args, int
i_args);
#endif
|