This commit is contained in:
Jeremy FLEURY
2019-07-17 11:51:13 +02:00
parent 748d10f4f3
commit 45e980b4e3
65 changed files with 6601 additions and 18 deletions

View File

@@ -6,7 +6,7 @@
/* By: jfleury <jfleury@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/05 15:35:42 by jfleury #+# #+# */
/* Updated: 2019/07/15 19:15:18 by igarbuz ### ########.fr */
/* Updated: 2019/07/17 11:49:39 by jfleury ### ########.fr */
/* */
/* ************************************************************************** */
@@ -18,7 +18,7 @@
# include <stdlib.h>
# include <stdarg.h>
# define BUFF_SIZE 32
# define BUFF_SIZE 1
# define CONV_ID_NB 13
# define FLAGS_NB 5
# define PRECI_GROUPS 3
@@ -120,8 +120,8 @@ char *ft_strstr(const char *str, const char *to_find);
char *ft_strsub(char const *s, unsigned int start, size_t len);
char *ft_strtrim(char const *s);
int ft_tolower(int c);
char *ft_itoa_base_int(unsigned int nb, int base);
char *ft_itoa_base_short(unsigned short nb, int base);
unsigned char *ft_itoa_base_int(unsigned int nb, int base);
unsigned char *ft_itoa_base_short(unsigned short nb, int base);
int ft_toupper(int c);
char *ft_strextend(char *s1, char const *s2);
char *ft_strnextend(char *s1, char const *s2, size_t len);