25 lines
1.1 KiB
C
25 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* printing.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/04/05 04:11:08 by tischmid #+# #+# */
|
|
/* Updated: 2023/04/05 06:28:23 by tischmid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PRINTING_H
|
|
# define PRINTING_H
|
|
# include "parsing.h"
|
|
# include <limits.h>
|
|
# include <unistd.h>
|
|
|
|
void ft_putchar(char c);
|
|
void ft_putnbr(int nb);
|
|
size_t ft_strlen(char const *str);
|
|
void print_map(t_map *map, int as_numbers);
|
|
|
|
#endif
|