-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibasm.h
More file actions
37 lines (30 loc) · 838 Bytes
/
libasm.h
File metadata and controls
37 lines (30 loc) · 838 Bytes
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
# ifndef LIBASM_H
# define LIBASM_H
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
typedef struct s_list
{
void *data;
struct s_list *next;
} t_list;
/*
** prototype base
*/
int 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 *s);
/*
** prototype bonus
*/
int ft_list_size(t_list *list);
void ft_list_push_front(t_list **begin_list, void *data);
int ft_atoi_base(char const *str, char const *base);
void ft_list_sort(t_list **begin_list, int (*cmp)());
void ft_list_remove_if(t_list **begin_list, void *data_ref, int (*cmp)());
# endif