21 lines
1012 B
C
21 lines
1012 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* lib.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: kjimenez <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/07/24 14:44:57 by kjimenez #+# #+# */
|
|
/* Updated: 2022/07/24 14:44:59 by kjimenez ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef LIB_H
|
|
# define LIB_H
|
|
|
|
void ft_putchar(char c);
|
|
void ft_putstr(char *str);
|
|
void ft_swap(int *i, int *j);
|
|
|
|
#endif
|