-
Notifications
You must be signed in to change notification settings - Fork 0
/
libfts.h
39 lines (35 loc) · 1.51 KB
/
libfts.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libfts.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rlechapt <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/03/08 18:20:44 by rlechapt #+# #+# */
/* Updated: 2015/04/01 05:32:27 by rlechapt ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIBFTS_H
# define LIBFTS_H
# include <string.h>
void ft_bzero(void *s, size_t n);
char *ft_strcat(char *s1, const char *s2);
int ft_islower(int c);
int ft_isupper(int c);
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_toupper(int c);
int ft_tolower(int c);
int ft_puts(char *str);
size_t ft_strlen(const char *str);
void *ft_memset(void *b, int c, size_t len);
void *ft_memcpy(void *dst, const void *src, size_t n);
char *ft_strdup(const char *s1);
void ft_cat(int fd);
char *ft_strcpy(char *dst, char *src);
int ft_isspace(char c);
int ft_abs(int a);
#endif