-
Notifications
You must be signed in to change notification settings - Fork 0
/
libasm.h
25 lines (21 loc) · 1.2 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libasm.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: pfile <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/09/26 20:39:06 by pfile #+# #+# */
/* Updated: 2020/09/26 20:40:41 by pfile ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIBASM_H
# define LIBASM_H
# include <string.h>
size_t ft_strlen(char *str);
char *ft_strcpy(char *dst, const char *src);
int ft_strcmp(const char *s1, const char *s2);
ssize_t ft_write(int fildes, const void *buf, size_t nbyte);
ssize_t ft_read(int fildes, void *buf, size_t nbyte);
char *ft_strdup(const char *s1);
#endif