From d72126cc5efc1cc5cca2de8960b13a24fee1c7e2 Mon Sep 17 00:00:00 2001 From: kaa Date: Wed, 5 Jul 2023 12:01:30 -0700 Subject: storeline was really a worse and non-standard getline, so getline has replaced it. --- shared.h | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) (limited to 'shared.h') diff --git a/shared.h b/shared.h index b4232ae..740984d 100644 --- a/shared.h +++ b/shared.h @@ -1,22 +1 @@ -static char * -storeline(FILE *in, int *end, int *len, int guess) -{ - static char *line; - line = calloc(guess, sizeof(char)); - int i = 0, buflen = guess; - char ch; - while ((ch = fgetc(in)) != EOF && ch != '\n') { - if (i == buflen - 1) { - buflen += guess; - line = realloc(line, buflen * sizeof(char)); - } - line[i] = ch; - ++i; - } - line[i] = '\0'; - *len = i; - if (ch == EOF) - *end = 1; - - return line; -} +char *site = "https://kaa.neocities.org/"; -- cgit 1.4.1-2-gfad0