代码拉取完成,页面将自动刷新
/*
* Cregexp.h,v 1.1 2001/11/30 10:55:27 jdurand Exp
*/
#ifndef __Cregexp_h
#define __Cregexp_h
/* ============= */
/* Local headers */
/* ============= */
#include <osdep.h>
/*
* Definitions etc. for regexp(3) routines.
*
* Caveat: this is V8 regexp(3) [actually, a reimplementation thereof],
* not the System V one.
*/
#ifdef CREGEXP_NSUBEXP
#undef CREGEXP_NSUBEXP
#endif
#define CREGEXP_NSUBEXP 10
struct Cregexp {
char *startp[CREGEXP_NSUBEXP];
char *endp[CREGEXP_NSUBEXP];
char regstart; /* Internal use only. */
char reganch; /* Internal use only. */
char *regmust; /* Internal use only. */
int regmlen; /* Internal use only. */
char program[1]; /* Unwarranted chumminess with compiler. */
};
typedef struct Cregexp Cregexp_t;
EXTERN_C Cregexp_t DLL_DECL *Cregexp_comp _PROTO((char *));
EXTERN_C int DLL_DECL Cregexp_exec _PROTO((Cregexp_t *, char *));
EXTERN_C int DLL_DECL Cregexp_sub _PROTO((Cregexp_t *, char *, char *, size_t));
EXTERN_C int DLL_DECL Cregexp_dump _PROTO((Cregexp_t *));
#endif /* __Cregexp_h */
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。