aboutsummaryrefslogtreecommitdiff
path: root/lib/libft/libft.h
diff options
context:
space:
mode:
authorcuhlig2024-08-09 16:26:37 +0200
committerGitHub2024-08-09 16:26:37 +0200
commit8abf7abdc9d49f52c4fcad0afc92730c4c195b7f (patch)
tree2255b668d61572fac185c3d6b5ddf7830a675371 /lib/libft/libft.h
parent36d2b4da2887419705cd22eb97a6283be86816f4 (diff)
parente197ecae60b005b0cfe7270f243740ae967bcb7d (diff)
downloadminishell-8abf7abdc9d49f52c4fcad0afc92730c4c195b7f.tar.gz
minishell-8abf7abdc9d49f52c4fcad0afc92730c4c195b7f.zip
Merge pull request #12 from dpu-kaiser/tokenizer
Tokenizer
Diffstat (limited to 'lib/libft/libft.h')
-rw-r--r--lib/libft/libft.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libft/libft.h b/lib/libft/libft.h
index 2de723b..67fbb0f 100644
--- a/lib/libft/libft.h
+++ b/lib/libft/libft.h
@@ -3,10 +3,10 @@
/* ::: :::::::: */
/* libft.h :+: :+: :+: */
/* +:+ +:+ +:+ */
-/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
+/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/10 16:37:54 by dkaiser #+# #+# */
-/* Updated: 2024/06/24 16:44:44 by dkaiser ### ########.fr */
+/* Updated: 2024/08/05 13:55:13 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
@@ -57,6 +57,7 @@ void ft_putchar_fd(char c, int fd);
void ft_putstr_fd(char *s, int fd);
void ft_putendl_fd(char *s, int fd);
void ft_putnbr_fd(int n, int fd);
+char *ft_strncpy(char *s1, char *s2, int n);
typedef struct s_list
{