mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
17 lines
202 B
C
17 lines
202 B
C
/*
|
|
** mruby/re.h - Regexp class
|
|
**
|
|
** See Copyright Notice in mruby.h
|
|
*/
|
|
|
|
#ifndef MRUBY_RE_H
|
|
#define MRUBY_RE_H
|
|
|
|
MRB_BEGIN_DECL
|
|
|
|
#define REGEXP_CLASS "Regexp"
|
|
|
|
MRB_END_DECL
|
|
|
|
#endif /* RE_H */
|