-
Notifications
You must be signed in to change notification settings - Fork 0
/
monty.h
72 lines (60 loc) · 1.88 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
#ifndef MONTY_H
#define MONTY_H
#define _GNU_SOURCE
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <stdarg.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;
/**
* struct instruction_s - opcode and its function
* @opcode: the opcode
* @f: function to handle the opcode
*
* Description: opcode and its function
* for stack, queues, LIFO, FIFO
*/
typedef struct instruction_s
{
char *opcode;
void (*f)(stack_t **stack, unsigned int line_number);
} instruction_t;
extern stack_t *head;
typedef void (*operation_func)(stack_t **, unsigned int);
/* file functions */
int openfile(char *filename);
int readfile(FILE *fd);
int parse_line(char *buffer, int line_number, int mode);
stack_t *create_node(int n);
/* stack functions */
void add_to_stack(stack_t **new_node, __attribute__((unused))unsigned int test);
void print_all(stack_t **stack, unsigned int line_number);
void print_int(stack_t **stack, unsigned int line_number);
void pop(stack_t **stack, unsigned int line_number);
void swap(stack_t **stack, unsigned int line_number);
void nop(stack_t **stack, unsigned int line_number);
void add(stack_t **stack, unsigned int line_number);
/* helper functions */
void (*select_operation_func(char *op_code, int line_number))(stack_t **, unsigned int);
int valitdate_value(char *value, int line_number, int *result);
void call_func(operation_func func, char *op_code, char *value, int line_number, int *mode);
void free_nodes(void);
/* error function */
void error(int error_code, ...);
#endif