-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpush.c
More file actions
43 lines (39 loc) · 809 Bytes
/
Copy pathpush.c
File metadata and controls
43 lines (39 loc) · 809 Bytes
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
#include "monty.h"
/**
* push - add node to the stack
* @head: stack head
* @counter: line_number
* Return: no return
*/
void push(stack_t **head, unsigned int counter)
{
int n, i = 0, fail_flag = 0;
if (montyData.value)
{
if (montyData.value[0] == '-')
i++;
for (; montyData.value[i] != '\0'; i++)
{
if (montyData.value[i] > 57 || montyData.value[i] < 48)
fail_flag = 1;
}
if (fail_flag == 1)
{
fprintf(stderr, "L%d: usage: push integer\n", counter);
fclose(montyData.file);
free(montyData.content);
freeStack(*head);
exit(EXIT_FAILURE);
}
}
else
{
fprintf(stderr, "L%d: usage: push integer\n", counter);
fclose(montyData.file);
free(montyData.content);
freeStack(*head);
exit(EXIT_FAILURE);
}
n = atoi(montyData.value);
addnode(head, n);
}