24 lines
1.2 KiB
C
24 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* extra.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/01/04 14:03:10 by cchauvet #+# #+# */
|
|
/* Updated: 2023/01/05 18:59:25 by cchauvet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#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, ...);
|
|
char **ft_tabrealloc(char **tab, size_t current_size, size_t new_size);
|
|
int ft_strcmp(char *s1, char *s2);
|
|
#endif
|