From 0d6c1f46f17217eaccade8e9025fe53bff1da5cd Mon Sep 17 00:00:00 2001 From: jekwupeter <31484984+jekwupeter@users.noreply.github.com> Date: Mon, 20 Jun 2022 12:39:19 +0100 Subject: [PATCH] Added underscore to getline function name --- other_functions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/other_functions.c b/other_functions.c index 6c60899..a7fdacb 100644 --- a/other_functions.c +++ b/other_functions.c @@ -9,7 +9,7 @@ * Return: returns the number of char entered * * */ -size_t getline(char **lineptr, size_t *n, FILE *stream) { +size_t _getline(char **lineptr, size_t *n, FILE *stream) { char *bufptr = NULL; char *p = bufptr; size_t size;