Skip to content

Commit

Permalink
Added underscore to getline function name
Browse files Browse the repository at this point in the history
  • Loading branch information
jekwupeter authored Jun 20, 2022
1 parent c6fa139 commit 0d6c1f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion other_functions.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0d6c1f4

Please sign in to comment.