libft2/inc/libft.h

12 lines
210 B
C

#ifndef _LIBFT_H
# define _LIBFT_H
# include <stddef.h>
# include <stdlib.h>
char *ft_strdup(const char *s);
size_t ft_strlen(const char *s);
int ft_strncmp(const char *s1, const char *s2, size_t n);
#endif