-
Notifications
You must be signed in to change notification settings - Fork 0
/
getline.h
73 lines (49 loc) · 886 Bytes
/
getline.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
73
#ifndef GETLINE_WINDOWS_H
#define GETLINE_WINDOWS_H
#ifdef _WIN32
#include <stdlib.h>
#include <stdio.h>
int getline(char **lineptr, size_t *n, FILE *stream) {
char *bufptr = NULL,
*p = bufptr;
size_t size;
int c;
if (lineptr == NULL)
return -1;
if (stream == NULL)
return -1;
if (n == NULL)
return -1;
bufptr = *lineptr;
size = *n;
c = fgetc(stream);
if (c == EOF)
return -1;
if (bufptr == NULL) {
bufptr = (char*) malloc(128);
if (bufptr == NULL)
return -1;
size = 128;
}
p = bufptr;
while (c != EOF) {
if ((p - bufptr) > (size - 1)) {
size = size + 128;
bufptr = (char*) realloc(bufptr, size);
if (bufptr == NULL)
return -1;
}
*p++ = c;
if (c == '\n')
break;
c = fgetc(stream);
}
*p++ = '\0';
*lineptr = bufptr;
*n = size;
return p - bufptr - 1;
}
// _WIN32
#endif
// GETLINE_WINDOWS_H
#endif