-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibasm.h
More file actions
29 lines (26 loc) · 1.28 KB
/
Copy pathlibasm.h
File metadata and controls
29 lines (26 loc) · 1.28 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
/* ************************************************************************** */
/* */
/* :::::::: */
/* libasm.h :+: :+: */
/* +:+ */
/* By: rvan-sch <[email protected]> +#+ */
/* +#+ */
/* Created: 2020/11/08 20:26:34 by rvan-sch #+# #+# */
/* Updated: 2020/11/08 20:26:50 by rvan-sch ######## odam.nl */
/* */
/* ************************************************************************** */
#ifndef LIBASM_H
# define LIBASM_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <fcntl.h>
unsigned long ft_strlen(char *str);
char *ft_strcpy(char *dst, char *src);
int ft_strcmp(char *s1, char *s2);
ssize_t ft_write(int fd, char *buff, size_t count);
ssize_t ft_read(int fd, char *buff, size_t count);
char *ft_strdup(const char *str);
#endif