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;