1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2025-01-10 17:32:05 +05:30
gists/c-programming/io/pure_getline.c

48 lines
808 B
C
Raw Normal View History

2024-01-28 22:47:01 +03:00
/*
* pure_getline.c
*
* Author: Intel A80486DX2-66
* License: Creative Commons Zero 1.0 Universal
2024-02-20 01:36:11 +03:00
*/
2024-01-28 22:47:01 +03:00
#include "pure_getline.h"
bool pure_getline(char** output) {
/*
2024-02-20 01:36:11 +03:00
* arguments:
* char** output: must be a pointer to an allocated array
*
2024-01-28 22:47:01 +03:00
* return value:
* true: no errors
* false: an error occurred, see errno
*/
if (output == NULL) {
errno = EINVAL;
return false;
}
2024-01-28 22:47:01 +03:00
char* line = NULL;
size_t len = 0;
int character;
bool past_first_time = false;
while ((character = fgetc(stdin)) != EOF) {
if (past_first_time && len == 0) { // check for integer overflow
errno = ERANGE;
*output = NULL;
return false;
}
if (character == '\n') {
line[len] = '\0';
break;
}
line[len++] = character;
past_first_time = true;
}
*output = line;
return true;
}