-
Notifications
You must be signed in to change notification settings - Fork 0
/
libasm.h
57 lines (46 loc) · 1.78 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* ************************************************************************** */
/* */
/* :::::::: */
/* libasm.h :+: :+: */
/* +:+ */
/* By: mark <marvin@codam.nl> +#+ */
/* +#+ */
/* Created: 2020/05/14 14:58:25 by mark #+# #+# */
/* Updated: 2020/06/22 09:35:48 by mpeerdem ######## odam.nl */
/* */
/* ************************************************************************** */
#ifndef LIBASM_H
# define LIBASM_H
# include <sys/types.h>
/*
** Mandatory functions
*/
size_t ft_strlen(const char *s);
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);
/*
** List struct for bonus
*/
typedef struct s_list
{
void *data;
struct s_list *next;
} t_list;
/*
** Bonus functions
*/
int ft_atoi_base(char *str, char *base);
void ft_list_push_front(t_list **begin_list, void *data);
int ft_list_size(t_list *begin_list);
void ft_list_sort(t_list **begin_list, int (*cmp)());
void ft_list_remove_if(t_list **begin_list, void *data_ref,
int (*cmp)());
/*
** Helper functions
*/
int ft_count(const char *s, int c);
int ft_index_of(const char *s, int c);
#endif