-
Notifications
You must be signed in to change notification settings - Fork 0
/
opcodes_2.c
executable file
·139 lines (127 loc) · 2.55 KB
/
opcodes_2.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#include "monty.h"
/**
* pint - prints the value at the top of stack
* @stack: pointer to the head node pointer of stack
* @nline: the line number
* Return: Nothing.
*/
void pint(stack_t **stack, unsigned int nline)
{
stack_t *temp;
if (stack == NULL || *stack == NULL)
{
fprintf(stderr, "L%d: can't pint, stack empty\n", nline);
exit(EXIT_FAILURE);
}
temp = *stack;
while (temp)
{
if (temp->prev == NULL)
break;
temp = temp->prev;
}
printf("%d\n", temp->n);
}
/**
* pop - removes the top element of stack
* @stack: pointer to the head node pointer of stack
* @nline: the line number
* Return: Nothing.
*/
void pop(stack_t **stack, unsigned int nline)
{
if (stack == NULL || *stack == NULL)
{
fprintf(stderr, "L%d: can't pop an empty stack\n", nline);
exit(EXIT_FAILURE);
}
/* if stack is more than 1 node, else free entire thing */
if ((*stack)->next != NULL)
{
*stack = (*stack)->next;
free((*stack)->prev);
(*stack)->prev = NULL;
}
else
{
free(*stack);
*stack = NULL;
}
}
/**
* swap - swaps the top two elements of the stack
* @stack: pointer to the head node pointer of stack
* @nline: the line number
* Return: Nothing.
*/
void swap(stack_t **stack, unsigned int nline)
{
int temp;
if (stack == NULL || *stack == NULL || !((*stack)->next))
{
fprintf(stderr, "L%d: can't swap, stack too short\n", nline);
exit(EXIT_FAILURE);
}
temp = (*stack)->n;
(*stack)->n = (*stack)->next->n;
(*stack)->next->n = temp;
}
/**
* pchar - prints char at top of stack
* @stack: pointer to the head node pointer of stack
* @nline: the line number
* Return: Nothing.
*/
void pchar(stack_t **stack, unsigned int nline)
{
char c;
stack_t *temp;
if (stack == NULL || *stack == NULL)
{
fprintf(stderr, "L%d: can't pchar, stack empty\n", nline);
exit(EXIT_FAILURE);
}
temp = *stack;
while (temp)
{
if (temp->prev == NULL)
break;
temp = temp->prev;
}
c = temp->n;
if (_isalpha(temp->n) == 0)
{
fprintf(stderr, "L%d: can't pchar, value out of range\n", nline);
exit(EXIT_FAILURE);
}
printf("%c\n", c);
}
/**
* pstr - prints a str from ascii starting from the top
* @stack: pointer to the head node pointer of stack
* @nline: the line number
* Return: Nothing.
*/
void pstr(stack_t **stack, unsigned int nline)
{
int idx = 0;
char res[] = "";
char c;
stack_t *temp;
temp = *stack;
(void)nline;
/* starts at the top */
while (temp)
{
if (temp->n == 0)
break;
if (_isalpha(temp->n) == 0)
break;
c = temp->n;
printf("%c", c);
res[idx] += c;
temp = temp->next;
idx++;
}
printf("\n");
}