23 lines
1.1 KiB
C
23 lines
1.1 KiB
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* extra.h :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: cchauvet <cchauvet@student.42angouleme.fr +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2023/01/04 14:03:10 by cchauvet #+# #+# */
|
||
|
/* Updated: 2023/01/04 19:59:10 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, ...);
|
||
|
int ft_strcmp(char *s1, char *s2);
|
||
|
#endif
|