-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathread_input.c
More file actions
97 lines (92 loc) · 1.66 KB
/
read_input.c
File metadata and controls
97 lines (92 loc) · 1.66 KB
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
#include "shs.h"
/**
* assign_line - assigns the line var for get_line
* @lineptr: Buffer that stores the input string
* @n: Size of lineptr
* @buffer: String that is been called to line
* @j: Size of buffer
*/
void assign_line(char **lineptr, size_t *n, char *buffer, size_t j)
{
if (*lineptr == NULL)
{
if (j > BUFSIZE)
*n = j;
else
*n = BUFSIZE;
*lineptr = buffer;
}
else if (*n < j)
{
if (j > BUFSIZE)
*n = j;
else
*n = BUFSIZE;
*lineptr = buffer;
}
else
{
_strcpy(*lineptr, buffer);
free(buffer);
}
}
/**
* get_line - Read input from stream
* @lineptr: Buffer that stores the input
* @n: Size of lineptr
* @stream: Stream to read from
* Return: The number of bytes read
*/
ssize_t get_line(char **lineptr, size_t *n, FILE *stream)
{
int i;
static ssize_t input;
ssize_t retval;
char *buffer;
char t = 'z';
if (input == 0)
fflush(stream);
else
return (-1);
input = 0;
buffer = malloc(sizeof(char) * BUFSIZE);
if (buffer == NULL)
return (-1);
while (t != '\n')
{
i = read(STDIN_FILENO, &t, 1);
if (i == -1 || (i == 0 && input == 0))
{
free(buffer);
return (-1);
}
if (i == 0 && input != 0)
{
input++;
break;
}
if (input >= BUFSIZE)
buffer = _realloc(buffer, input, input + 1);
buffer[input] = t;
input++;
}
buffer[input] = '\0';
assign_line(lineptr, n, buffer, input);
retval = input;
if (i != 0)
input = 0;
return (retval);
}
/**
* _get_line - reads the input string.
*
* @i_eof: return value of getline function
* Return: input string
*/
char *_get_line(int *i_eof)
{
char *input = NULL;
size_t bufsize = 0;
*i_eof = getline(&input, &bufsize, stdin);
return (input);
}