libmya
0.1.0
Library to parse Mya language.
Toggle main menu visibility
Main Page
Data Structures
Data Structures
Data Structure Index
Data Fields
All
_
a
b
c
d
e
f
i
k
l
m
n
p
r
s
t
v
Variables
_
a
b
c
d
e
f
i
k
l
m
n
p
r
s
t
v
Files
File List
Globals
All
_
a
c
d
e
f
h
k
l
m
n
o
p
s
t
Functions
_
a
c
d
e
h
m
p
s
t
Variables
Typedefs
Enumerations
Enumerator
e
f
k
n
o
t
Macros
_
a
c
d
e
h
l
m
s
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
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
;
3
typedef
enum
operator
{
…
};
16
17
extern
const
char
*
mya_operators
[];
mya_operators
const char * mya_operators[]
Definition
globals.c:22
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