-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibfts.h
More file actions
39 lines (35 loc) · 1.66 KB
/
libfts.h
File metadata and controls
39 lines (35 loc) · 1.66 KB
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: gpouyat <gpouyat@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/10/26 16:21:53 by gpouyat #+# #+# */
/* Updated: 2018/08/30 15:47:42 by gpouyat ### ########.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);
size_t ft_strlen(const char *s);
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(const char *s);
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_memalloc(size_t len);
char *ft_strcpy(char *dest, const char *src);
char *ft_strncpy(char *dest, const char *src, size_t len);
void ft_cat(int fd);
void ft_putstr(const char *string);
void ft_putstr_fd(const char *string, int fd);
#endif