42-archive/42-piscine-c/rush02/ex00/includes/patterns.h
2016-08-25 20:50:28 +02:00

23 lines
1,010 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* patterns.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/08/21 16:23:45 by jhalford #+# #+# */
/* Updated: 2016/08/21 19:19:02 by jhalford ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef PATTERNS_H
# define PATTERNS_H
typedef struct s_pattern
{
char a;
char b;
char c;
} t_pattern;
#endif