22 lines
1 KiB
C
22 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/08/12 12:27:43 by jhalford #+# #+# */
|
|
/* Updated: 2016/08/12 12:27:56 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FT_H
|
|
# define FT_H
|
|
|
|
void ft_putchar(char c);
|
|
void ft_swap(int *a, int *b);
|
|
void ft_putstr(char *str);
|
|
int ft_strlen(char *str);
|
|
int ft_strcmp(char *s1, char *s2);
|
|
|
|
#endif
|