libft/libft.h
2024-10-15 13:51:09 +02:00

30 lines
1.2 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libft.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/15 10:11:54 by kcolin #+# #+# */
/* Updated: 2024/10/15 13:37:25 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIBFT_H
# define LIBFT_H
typedef unsigned int t_size;
int ft_isalpha(int c);
int ft_isdigit(int c);
int ft_isalnum(int c);
int ft_isascii(int c);
int ft_isprint(int c);
t_size ft_strlen(const char *s);
void *ft_memset(void *dest, int c, t_size len);
void ft_bzero(void *b, t_size len);
void *ft_memcpy(void *dst, const void *src, t_size len);
#endif