libmya
0.1.0
Library to parse Mya language.
Loading...
Searching...
No Matches
src
include
types
operators.h
Go to the documentation of this file.
1
#pragma once
2
3
typedef
enum
operator
4
{
5
OP_AND
= 0,
6
OP_DIV
,
7
OP_MINUS
,
8
OP_MULT
,
9
OP_NOT
,
10
OP_OR
,
11
OP_PLUS
,
12
OP_SHIFT_LEFT
,
13
OP_SHIFT_RIGHT
,
14
OP_XOR
,
15
}
operator_t
;
16
17
extern
const
char
*
mya_operators
[];
mya_operators
const char * mya_operators[]
Definition
globals.c:21
operator_t
enum operator operator_t
OP_SHIFT_LEFT
@ OP_SHIFT_LEFT
Definition
operators.h:12
OP_NOT
@ OP_NOT
Definition
operators.h:9
OP_SHIFT_RIGHT
@ OP_SHIFT_RIGHT
Definition
operators.h:13
OP_PLUS
@ OP_PLUS
Definition
operators.h:11
OP_DIV
@ OP_DIV
Definition
operators.h:6
OP_XOR
@ OP_XOR
Definition
operators.h:14
OP_MULT
@ OP_MULT
Definition
operators.h:8
OP_AND
@ OP_AND
Definition
operators.h:5
OP_MINUS
@ OP_MINUS
Definition
operators.h:7
OP_OR
@ OP_OR
Definition
operators.h:10
Generated by
1.13.2