- function for deleting word tables
	- function for putting on scrren x chars of char*
	- function for getting number of chars in int
This commit is contained in:
Tanguy MAZE
2018-07-25 18:49:06 +02:00
parent 20dc8e0afb
commit f88ff8a600
5 changed files with 86 additions and 3 deletions

View File

@@ -6,7 +6,7 @@
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/08 00:12:36 by tmaze #+# #+# */
/* Updated: 2018/06/07 16:54:31 by tmaze ### ########.fr */
/* Updated: 2018/07/25 18:18:40 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
@@ -139,4 +139,9 @@ char *ft_strnchr(const char *s, int c, int n);
char *ft_strrnchr(const char *s, int c, int n);
int get_next_line(const int fd, char **line);
void ft_del_words_tables(char ***word_table);
void ft_putstrn(char const *s, size_t nb);
size_t ft_nbrlen(int nb);
#endif