/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* libft.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tosuman +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/05/11 11:31:44 by tosuman #+# #+# */ /* Updated: 2023/05/11 11:31:46 by tosuman ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef LIBFT_H # define LIBFT_H # include int ft_atoi(const char *nptr); void ft_bzero(void *s, size_t n); void *ft_calloc(size_t nmemb, size_t size); int ft_isalnum(int c); int ft_isalpha(int c); int ft_isascii(int c); int ft_isdigit(int c); int ft_isprint(int c); int ft_isspace(int c); void *ft_memchr(const void *s, int c, size_t n); int ft_memcmp(const void *s1, const void *s2, size_t n); void *ft_memcpy(void *dest, const void *src, size_t n); void *ft_memmove(void *dest, const void *src, size_t n); void *ft_memset(void *s, int c, size_t n); char *ft_strchr(const char *s, int c); char *ft_strdup(const char *s); size_t ft_strlcat(char *dst, const char *src, size_t size); size_t ft_strlcpy(char *dst, const char *src, size_t size); size_t ft_strlen(const char *s); int ft_strncmp(const char *s1, const char *s2, size_t n); char *ft_strnstr(const char *big, const char *little, size_t len); char *ft_strrchr(const char *s, int c); int ft_tolower(int c); int ft_toupper(int c); char *ft_substr(char const *s, unsigned int start, size_t len); typedef struct s_list { void *content; struct s_list *next; } t_list; #endif