23 lines
1,010 B
C
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
|