-
Notifications
You must be signed in to change notification settings - Fork 0
/
libasm.h
34 lines (29 loc) · 1.36 KB
/
libasm.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libasm.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kukim <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/11/08 16:45:58 by kukim #+# #+# */
/* Updated: 2020/11/09 17:42:21 by kukim ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIBASM_H
# define LIBASM_H
# include <stdio.h>
# include <string.h>
# include <fcntl.h>
# include <unistd.h>
# include <stdlib.h>
# define R "\x1b[31m"
# define G "\x1b[32m"
# define Y "\x1b[33m"
# define S "\x1b[0m"
size_t ft_strlen(const char *s);
int ft_strcmp(const char *s1, const char *s2);
char *ft_strcpy(const char *dst, const char *src);
char *ft_strdup(const char *s1);
int ft_write(int fd, void *buff, size_t nbyte);
int ft_read(int fd, void *buff, size_t nbyte);
#endif