creation des bonus

This commit is contained in:
Hugo LAMY
2019-12-29 18:11:06 +01:00
parent 6f9d6ee1a2
commit 7a475a6824
5 changed files with 46 additions and 49 deletions

View File

@@ -20,18 +20,18 @@
typedef struct s_gnlist
{
int lfd;
char *string;
char *str;
struct s_gnlist *next;
} t_gnlist;
int get_next_line(const int fd, char **line);
int multi_fd(int fd, t_gnlist **lst);
char *ft_strjoinfree(char const *s1, char const *s2);
int free_lst(t_gnlist **lst, int ret);
size_t ft_strlen(const char *str);
void *ft_memmove(void *dst, const void *src, size_t len);
char *ft_strchr(const char *s, int c);
char *ft_strdup(const char *src);
int free_lst(t_gnlist **lst, const int fd, int ret);
char *ft_strjoinfree(char const *s1, char const *s2);
#endif