42_solong/libftx/extra/extra.h

24 lines
1.2 KiB
C
Raw Normal View History

2023-01-04 14:07:13 -05:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* extra.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/01/04 14:03:10 by cchauvet #+# #+# */
2023-01-05 13:04:29 -05:00
/* Updated: 2023/01/05 18:59:25 by cchauvet ### ########.fr */
2023-01-04 14:07:13 -05:00
/* */
/* ************************************************************************** */
#ifndef EXTRA_H
# define EXTRA_H
# include <stdarg.h>
# include <stdlib.h>
# include "../libft/libft.h"
char *ft_strfjoin(char *s1, char *s2);
char *ft_strmerger(size_t arg_len, ...);
2023-01-05 13:04:29 -05:00
char **ft_tabrealloc(char **tab, size_t current_size, size_t new_size);
2023-01-04 14:07:13 -05:00
int ft_strcmp(char *s1, char *s2);
#endif