22 lines
1.1 KiB
C
22 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* types.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <jack@crans.org> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2017/03/28 10:57:17 by jhalford #+# #+# */
|
|
/* Updated: 2017/03/28 10:57:34 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef TYPES_H
|
|
# define TYPES_H
|
|
|
|
typedef struct s_stos t_stos;
|
|
typedef struct s_stof t_stof;
|
|
typedef struct s_itof t_itof;
|
|
typedef long long t_type;
|
|
typedef long long t_flag;
|
|
|
|
#endif
|