summaryrefslogtreecommitdiffhomepage
path: root/src/re.h
blob: eafe50dc871e8a4d96934be2693060985dcca7b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
** re.h - Regexp class
**
** See Copyright Notice in mruby.h
*/

#ifndef RE_H
#define RE_H

//#include <sys/types.h>
#include <stdio.h>

#include "node.h"
#include "st.h"

#define REGEXP_CLASS "Regexp"

#endif