-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibftasm.h
32 lines (28 loc) · 1.32 KB
/
libftasm.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libftasm.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vtarasiu <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/07/15 18:09:14 by vtarasiu #+# #+# */
/* Updated: 2019/07/19 17:04:31 by vtarasiu ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIBFTASM_H
# define LIBFTASM_H
# include <unistd.h>
# include <sys/types.h>
void ft_bzero(void *ptr, size_t size);
int ft_isalpha(int c);
int ft_isdigit(int c);
int ft_isalnum(int c);
int ft_isprint(int c);
int ft_isascii(int c);
int ft_tolower(int c);
int ft_toupper(int c);
char *ft_strcat(char *restrict dst, const char *src);
size_t ft_strlen(char *str);
int ft_puts(const char *str);
char *ft_strdup(const char *str);
#endif