2000-05-01 13:42:38 +04:00
|
|
|
/**********************************************************************
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
re.h -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
$Date$
|
|
|
|
created at: Thu Sep 30 14:18:32 JST 1993
|
|
|
|
|
2000-01-05 07:41:21 +03:00
|
|
|
Copyright (C) 1993-2000 Yukihiro Matsumoto
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-05-01 13:42:38 +04:00
|
|
|
**********************************************************************/
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
#ifndef RE_H
|
|
|
|
#define RE_H
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "regex.h"
|
|
|
|
|
|
|
|
typedef struct re_pattern_buffer Regexp;
|
|
|
|
|
|
|
|
struct RMatch {
|
|
|
|
struct RBasic basic;
|
|
|
|
VALUE str;
|
|
|
|
struct re_registers *regs;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define RMATCH(obj) (R_CAST(RMatch)(obj))
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
int rb_str_cicmp _((VALUE, VALUE));
|
|
|
|
VALUE rb_reg_regcomp _((VALUE));
|
|
|
|
int rb_reg_search _((VALUE, VALUE, int, int));
|
|
|
|
VALUE rb_reg_regsub _((VALUE, VALUE, struct re_registers *));
|
1999-12-14 09:50:43 +03:00
|
|
|
int rb_reg_adjust_startpos _((VALUE, VALUE, int, int));
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
int rb_kcode _((void));
|
2000-02-08 11:54:01 +03:00
|
|
|
void rb_match_busy _((VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2000-05-30 08:24:17 +04:00
|
|
|
EXTERN int ruby_ignorecase;
|
1999-11-04 11:39:57 +03:00
|
|
|
|
2000-05-01 13:42:38 +04:00
|
|
|
int rb_reg_mbclen2 _((unsigned int, VALUE));
|
2000-02-08 11:54:01 +03:00
|
|
|
#define mbclen2(c,re) rb_reg_mbclen2((c),(re))
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|