diff options
| author | Dominik Kaiser | 2025-01-20 20:14:32 +0100 |
|---|---|---|
| committer | GitHub | 2025-01-20 20:14:32 +0100 |
| commit | bd8c817797d5f2b1affe6957ffc51846a38e70ec (patch) | |
| tree | 2fc0f567b1c4f2f168a931ad0bff69e52c6c226c /lib/libft/libft.h | |
| parent | a9aba07b52cbf98eb9c52cd8ee0cd5f5021d2931 (diff) | |
| parent | dc6a4f2d0de92984c2584ef905011e2a60792850 (diff) | |
| download | minishell-bd8c817797d5f2b1affe6957ffc51846a38e70ec.tar.gz minishell-bd8c817797d5f2b1affe6957ffc51846a38e70ec.zip | |
Merge interpreter changes into main
Miau
Diffstat (limited to 'lib/libft/libft.h')
| -rw-r--r-- | lib/libft/libft.h | 5 |
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 { |
