mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
27 lines
398 B
C
27 lines
398 B
C
/*
|
|
** regex.h - Regexp class
|
|
**
|
|
** See Copyright Notice in mruby.h
|
|
*/
|
|
|
|
#ifndef ONIGURUMA_REGEX_H
|
|
#define ONIGURUMA_REGEX_H 1
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "oniguruma.h"
|
|
|
|
#ifndef ONIG_RUBY_M17N
|
|
|
|
#define mbclen(p,e,enc) mrb_enc_mbclen((p),(e),(enc))
|
|
|
|
#endif /* ifndef ONIG_RUBY_M17N */
|
|
|
|
#if defined(__cplusplus)
|
|
} /* extern "C" { */
|
|
#endif
|
|
|
|
#endif /* ONIGURUMA_REGEX_H */
|