31 lines
1.2 KiB
C
31 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* header.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/08/18 19:29:42 by jhalford #+# #+# */
|
|
/* Updated: 2016/08/25 17:08:43 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef HEADER_H
|
|
# define HEADER_H
|
|
# define BUF_SIZE 10
|
|
# include <errno.h>
|
|
# include <sys/types.h>
|
|
# include <sys/uio.h>
|
|
# include <unistd.h>
|
|
# include <fcntl.h>
|
|
# include <stdlib.h>
|
|
# include "header.h"
|
|
|
|
void ft_putchar(char c);
|
|
void ft_putstr(char *str);
|
|
void ft_putnbr(int nbr);
|
|
int ft_strcmp(char *s1, char *s2);
|
|
int ft_get_size(char *filename);
|
|
int ft_atoi(char *str);
|
|
|
|
#endif
|