Skip to content

Commit

Permalink
Added underscore to custom getline
Browse files Browse the repository at this point in the history
  • Loading branch information
jekwupeter authored Jun 20, 2022
1 parent c961521 commit e0712d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monty.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ typedef struct instruction_s
void (*f)(stack_t **stack, unsigned int line_number);
} instruction_t;

size_t getline(char **lineptr, size_t *n, FILE *stream);
size_t _getline(char **lineptr, size_t *n, FILE *stream);
void pall(stack_t **stack_ptr, unsigned int count __attribute__((unused)));
size_t print_dlistint(const stack_t *stack_ptr);
int delete_dnodeint(stack_t **stack_ptr, unsigned int count);
Expand Down

0 comments on commit e0712d2

Please sign in to comment.