49 lines
No EOL
2.1 KiB
C
Executable file
49 lines
No EOL
2.1 KiB
C
Executable file
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* libft.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: thrieg <thrieg@student.42mulhouse.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/10/14 12:38:59 by thrieg #+# #+# */
|
|
/* Updated: 2025/02/16 19:08:22 by thrieg ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef LIBFT_H
|
|
# define LIBFT_H
|
|
|
|
# include <stdlib.h>
|
|
# include <unistd.h>
|
|
# include <limits.h>
|
|
|
|
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);
|
|
size_t ft_strlen(const char *s);
|
|
void *ft_memset(void *s, int c, size_t n);
|
|
void ft_bzero(void *s, 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);
|
|
size_t ft_strlcpy(char *dst, const char *src, size_t size);
|
|
size_t ft_strlcat(char *dst, const char *src, size_t size);
|
|
int ft_toupper(int c);
|
|
int ft_tolower(int c);
|
|
char *ft_strchr(const char *s, int c);
|
|
char *ft_strrchr(const char *s, int c);
|
|
int ft_strncmp(const char *s1, const char *s2, size_t n);
|
|
void *ft_memchr(const void *s, int c, size_t n);
|
|
int ft_memcmp(const void *s1, const void *s2, size_t n);
|
|
char *ft_strnstr(const char *big, const char *little, size_t len);
|
|
int ft_atoi(const char *nptr);
|
|
char *ft_strdup(const char *s);
|
|
char *ft_itoa(int n);
|
|
char *ft_itoa_base(int nbr, char *base);
|
|
char *ft_addr_to_strhex(void *addr);
|
|
char *ft_utoa(unsigned int n);
|
|
char *ft_utoa_base(unsigned int nbr, char *base);
|
|
size_t ft_strnonchr(char *str, char c);
|
|
|
|
#endif |