diff options
| author | Dominik Kaiser | 2024-03-25 14:20:51 +0100 |
|---|---|---|
| committer | Dominik Kaiser | 2024-03-25 14:20:51 +0100 |
| commit | ac2a1018fe004bf158025eacb6bf78c2bd3fce7a (patch) | |
| tree | e0662c38967cc2c7e8716a36a324b7419bcfe524 /get_next_line.h | |
| parent | 33a83031dd615a342e2acf33cc134bb0a2a4acb8 (diff) | |
| download | get_next_line-ac2a1018fe004bf158025eacb6bf78c2bd3fce7a.tar.gz get_next_line-ac2a1018fe004bf158025eacb6bf78c2bd3fce7a.zip | |
Refactor some more
Should be ready for eval now
Diffstat (limited to 'get_next_line.h')
| -rw-r--r-- | get_next_line.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/get_next_line.h b/get_next_line.h index f0b0006..63c477b 100644 --- a/get_next_line.h +++ b/get_next_line.h @@ -6,7 +6,7 @@ /* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/03/15 14:14:07 by dkaiser #+# #+# */ -/* Updated: 2024/03/22 12:04:28 by dkaiser ### ########.fr */ +/* Updated: 2024/03/25 14:19:27 by dkaiser ### ########.fr */ /* */ /* ************************************************************************** */ @@ -21,6 +21,6 @@ int ft_strlen(const char *str); char *get_next_line(int fd); -char *str_realloc(char *str, size_t size); - +void clear_buffer(char *buf, int start); +char *str_add_buffer(char *old_str, char *buf, int buf_len); #endif // GET_NEXT_LINE_H |
