-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonty.h
119 lines (87 loc) · 2.15 KB
/
monty.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#ifndef MONTY_H
#define MONTY_H
#include <stdio.h>
#include <stdlib.h>
/**
* struct stack_s - doubly linked list representation of a stack (or queue)
* @n: integer
* @prev: points to the previous element of the stack (or queue)
* @next: points to the next element of the stack (or queue)
*
* Description: doubly linked list node structure
* for stack, queues, LIFO, FIFO
*/
typedef struct stack_s
{
int n;
struct stack_s *prev;
struct stack_s *next;
} stack_t;
typedef void (*instruction_fn)(stack_t **);
/**
* struct instruction_s - opcode and its function
* @opcode: the opcode
* @fn: function to handle the opcode
*
* Description: opcode and its function
* for stack, queues, LIFO, FIFO
*/
typedef struct instruction_s
{
char *opcode;
instruction_fn fn;
} instruction_t;
/**
* enum stack_mode_n - stack mode enumeration
* @LIFO: operate as a stack
* @FIFO: operate as a queue
*/
typedef enum stack_mode_n
{
LIFO = 0,
FIFO = 1
} stack_mode_t;
/**
* struct op_env_s - operation environment
* @sp: top of the stack
* @argv: argument vector
* @line: line buffer
* @line_size: line buffer size
* @lineno: line number
* @mode: stack operation mode
*/
typedef struct op_env_s
{
stack_t *sp;
char **argv;
char *line;
size_t line_size;
size_t lineno;
stack_mode_t mode;
} op_env_t;
extern op_env_t op_env;
instruction_fn match_opcode_instruction(const char *opcode);
void op_add(stack_t **pStack);
void op_div(stack_t **pStack);
void op_mod(stack_t **pStack);
void op_mul(stack_t **pStack);
void op_nop(stack_t **pStack);
void op_pall(stack_t **pStack);
void op_pchar(stack_t **pStack);
void op_pint(stack_t **pStack);
void op_pop(stack_t **pStack);
void op_pstr(stack_t **pStack);
void op_push(stack_t **pStack);
void op_queue(stack_t **pStack);
void rot_upward(stack_t **pStack);
void rot_downward(stack_t **pStack);
void op_stack(stack_t **pStack);
void op_sub(stack_t **pStack);
void op_swap(stack_t **pStack);
char **str_to_words(char *str);
size_t count_words(const char *str);
void free_env(void);
void free_stack(stack_t **pStack);
void print_err(const char *format, ...);
int isinteger(const char *str);
#endif /* MONTY_H */