-
Notifications
You must be signed in to change notification settings - Fork 1
/
dictionary.c
101 lines (97 loc) · 1.88 KB
/
dictionary.c
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
#include "monty.h"
/**
* pushNode - check the code
* @stack: first variable
* @line_number: Second variable
* Return: void.
*/
void pushNode(stack_t **stack, unsigned int line_number)
{
stack_t *node;
(void)line_number;
node = createNode(command.number);
if (*stack == NULL)
{
*stack = node;
node->prev = NULL;
return;
}
node->prev = *stack;
(*stack)->next = node;
*stack = node;
}
/**
* pallStack - check the code
* @stack: first variable
* @line_number: Second variable
* Return: void.
*/
void pallStack(stack_t **stack, unsigned int line_number)
{
stack_t *current;
if (*stack == NULL)
{
fprintf(stderr, "L%u: can't pint, stack empty\n", line_number);
exit(EXIT_FAILURE);
}
current = *stack;
while (current != NULL)
{
printf("%d\n", current->n);
current = current->prev;
}
}
/**
* pintStack - check the code
* @stack: first variable
* @line_number: Second variable
* Return: void.
*/
void pintStack(stack_t **stack, unsigned int line_number)
{
if (*stack != NULL)
{
printf("%d\n", (*stack)->n);
}
else
{
fprintf(stderr, "L%u: can't pint, stack empty\n", line_number);
exit(EXIT_FAILURE);
}
}
/**
* popStack - check the code
* @stack: first variable
* @line_number: Second variable
* Return: void.
*/
void popStack(stack_t **stack, unsigned int line_number)
{
stack_t *pop;
if (*stack == NULL)
{
fprintf(stderr, "L%u: can't pop an empty stack\n", line_number);
exit(EXIT_FAILURE);
}
pop = *stack;
*stack = (*stack)->prev;
free(pop);
}
/**
* popStack - check the code
* @stack: first variable
* @line_number: Second variable
* Return: void.
*/
void swapStack(stack_t **stack, unsigned int line_number)
{
int tmp;
if (*stack == NULL || (*stack)->prev == NULL)
{
fprintf(stderr, "L%u: can't swap, stack too short\n", line_number);
exit(EXIT_FAILURE);
}
tmp = (*stack)->n;
(*stack)->n = (*stack)->prev->n;
(*stack)->prev->n = tmp;
}