| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* ft_defs.h :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@student.42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2018/10/05 22:22:34 by bchanot #+# #+# */
- /* Updated: 2018/10/22 02:46:35 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #ifndef FT_DEFS_H
- # define FT_DEFS_H
- # include <string.h>
- # define NO_FLAGS 0
- typedef unsigned char t_uint8;
- typedef unsigned short t_uint16;
- typedef unsigned int t_uint32;
- typedef unsigned long long t_uint64;
- typedef char t_int8;
- typedef short t_int16;
- typedef int t_int32;
- typedef long long t_int64;
- typedef struct s_gnl
- {
- char *tmp;
- int fd;
- int eof;
- struct s_gnl *next;
- } t_gnl;
- typedef enum e_bool
- {
- false,
- true
- } t_bool;
- #endif
|