aboutsummaryrefslogtreecommitdiff
path: root/lib/libft/libft.h
diff options
context:
space:
mode:
authorChristopher Uhlig2025-01-13 11:06:54 +0100
committerChristopher Uhlig2025-01-13 11:06:54 +0100
commit78dc50a2bce3c6e31405437189e2990d8fc720ac (patch)
treed61d9f0d279e191c1bfb34929908f412cf58c02d /lib/libft/libft.h
parentae5512ea0d6d8be833ca3a9b39f93239109f45b4 (diff)
downloadminishell-78dc50a2bce3c6e31405437189e2990d8fc720ac.tar.gz
minishell-78dc50a2bce3c6e31405437189e2990d8fc720ac.zip
here
Diffstat (limited to 'lib/libft/libft.h')
-rw-r--r--lib/libft/libft.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libft/libft.h b/lib/libft/libft.h
index abb739d..6b4c824 100644
--- a/lib/libft/libft.h
+++ b/lib/libft/libft.h
@@ -6,7 +6,7 @@
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/03/10 16:37:54 by dkaiser #+# #+# */
-/* Updated: 2024/08/11 14:01:57 by chuhlig ### ########.fr */
+/* Updated: 2025/01/09 14:39:28 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
@@ -26,6 +26,7 @@ int ft_isalnum(int c);
int ft_isprint(int c);
int ft_isspace(char c);
int ft_isascii(int c);
+int ft_strcmp(char *s1, char *s2);
int ft_strlen(const char *str);
void *ft_memset(void *b, int c, size_t len);
void ft_bzero(void *s, size_t n);
@@ -59,6 +60,8 @@ 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);
+char *ft_strcat(char *dest, char *src);
+char *ft_strcpy(char *dest, char *src);
typedef struct s_list
{