-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibft.h
101 lines (93 loc) · 3.81 KB
/
libft.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* ************************************************************************** */
/* */
/* :::::::: */
/* libft.h :+: :+: */
/* +:+ */
/* By: jvan-hal <[email protected]> +#+ */
/* +#+ */
/* Created: 2022/10/03 14:32:38 by jvan-hal #+# #+# */
/* Updated: 2024/01/10 12:19:34 by jvan-hal ######## odam.nl */
/* */
/* ************************************************************************** */
#ifndef LIBFT_H
# define LIBFT_H
# ifndef BUFFER_SIZE
# define BUFFER_SIZE 15
# endif
# include <stddef.h>
# include <stdint.h>
typedef struct s_list
{
void *content;
struct s_list *prev;
struct s_list *next;
} t_list;
typedef struct padding_info
{
char alt;
int width;
char adj;
char sign;
char padc;
char blank;
int prec;
} t_padding;
double ft_atof(char *str);
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);
int ft_isspace(int c);
size_t ft_strlen(const char *s);
void *ft_memset(void *b, int c, size_t len);
void ft_bzero(void *s, size_t n);
void *ft_memcpy(void *dst, const void *src, size_t n);
void *ft_memmove(void *dst, const void *src, size_t len);
size_t ft_strlcpy(char *dst, const char *src, size_t dstsize);
size_t ft_strlcat(char *dst, const char *src, size_t dstsize);
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 *haystack, const char *needle,
size_t len);
int ft_atoi(const char *str);
void *ft_calloc(size_t count, size_t size);
char *ft_strdup(const char *s1);
char *ft_substr(char const *s, unsigned int start, size_t len);
char *ft_strjoin(char const *s1, char const *s2);
char *ft_strtrim(char const *s1, char const *set);
char **ft_split(char const *s, char c);
char *ft_itoa(int n);
char *ft_strmapi(char const *s, char (*f)(unsigned int, char));
void ft_striteri(char *s, void (*f)(unsigned int, char *));
void ft_putchar_fd(char c, int fd);
void ft_putstr_fd(char *s, int fd);
void ft_putendl_fd(char *s, int fd);
void ft_putnbr_fd(int n, int fd);
t_list *ft_lstnew(void *content);
void ft_lstadd_front(t_list **lst, t_list *new);
int ft_lstsize(t_list *lst);
t_list *ft_lstlast(t_list *lst);
void ft_lstadd_back(t_list **lst, t_list *new);
void ft_lstdelone(t_list *lst, void (*del)(void *));
void ft_lstclear(t_list **lst, void (*del)(void *));
void ft_lstiter(t_list *lst, void (*f)(void *));
t_list *ft_lstmap(t_list *lst, void *(*f)(void *),
void (*del)(void *));
char *getstr_hex(long long int n, char type, t_padding *padinfo);
char *getstr_ptr(uintptr_t ptr, char type, t_padding *padinfo);
char *ft_uitoa(unsigned int n, t_padding *padinfo);
char *ft_itoa_format(int n, t_padding *padinfo);
int ft_writestr(char *s, char type, t_padding *padinfo);
int getformat(const char *s, t_padding *padinfo);
int ft_printf(const char *s, ...);
int gnl_strlen(const char *s);
int copytomem(char **mem, char *src, int i, int len);
void shiftmem(char *mem, int shiftlen);
char *get_next_line(int fd);
#endif