feat: initial version
This commit is contained in:
parent
5cad2db883
commit
6428ed06b0
16 changed files with 263 additions and 0 deletions
21
hdrs/libft.h
Normal file
21
hdrs/libft.h
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#ifndef LIBFT_H
|
||||
# define LIBFT_H
|
||||
|
||||
# include <stdlib.h>
|
||||
|
||||
int ft_islower(int c);
|
||||
int ft_isupper(int c);
|
||||
int ft_tolower(int c);
|
||||
int ft_toupper(int c);
|
||||
int ft_isdigit(int c);
|
||||
int ft_isalpha(int c);
|
||||
void ft_bzero(void *s, size_t n);
|
||||
void *ft_memset(void *s, int c, size_t n);
|
||||
void *ft_memset32(void *s, int c, size_t n);
|
||||
void *ft_memset64(void *s, int c, size_t n);
|
||||
void *ft_memcpy(void *dst, const void *src, size_t n);
|
||||
void *ft_memcpy32(void *dst, const void *src, size_t n);
|
||||
void *ft_memcpy64(void *dst, const void *src, size_t n);
|
||||
int ft_atoi(const char *str);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue