2024-10-15 10:21:37 +02:00
|
|
|
/* ************************************************************************** */
|
|
|
|
|
/* */
|
|
|
|
|
/* ::: :::::::: */
|
|
|
|
|
/* libft.h :+: :+: :+: */
|
|
|
|
|
/* +:+ +:+ +:+ */
|
|
|
|
|
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
|
|
|
|
|
/* +#+#+#+#+#+ +#+ */
|
|
|
|
|
/* Created: 2024/10/15 10:11:54 by kcolin #+# #+# */
|
2024-10-15 14:29:15 +02:00
|
|
|
/* Updated: 2024/10/15 13:56:53 by kcolin ### ########.fr */
|
2024-10-15 10:21:37 +02:00
|
|
|
/* */
|
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
|
|
#ifndef LIBFT_H
|
|
|
|
|
# define LIBFT_H
|
|
|
|
|
|
2024-10-15 10:44:30 +02:00
|
|
|
typedef unsigned int t_size;
|
2024-10-15 10:21:37 +02:00
|
|
|
|
2024-10-15 10:44:30 +02:00
|
|
|
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);
|
2024-10-15 10:21:37 +02:00
|
|
|
|
|
|
|
|
t_size ft_strlen(const char *s);
|
|
|
|
|
|
2024-10-15 11:19:02 +02:00
|
|
|
void *ft_memset(void *dest, int c, t_size len);
|
2024-10-15 11:55:56 +02:00
|
|
|
void ft_bzero(void *b, t_size len);
|
2024-10-15 13:51:09 +02:00
|
|
|
void *ft_memcpy(void *dst, const void *src, t_size len);
|
2024-10-15 14:29:15 +02:00
|
|
|
void *ft_memmove(void *dst, const void *src, t_size len);
|
2024-10-15 11:19:02 +02:00
|
|
|
|
2024-10-15 10:21:37 +02:00
|
|
|
#endif
|