home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Club Elmshorn Atari PD
/
CCE_PD.iso
/
pc
/
0400
/
CCE_0423.ZIP
/
CCE_0423.PD
/
INCLUD83.ZOO
/
regexp.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-07-20
|
905b
|
38 lines
/* The <regexp.h> header is used by the (V8-compatible) regexp(3) routines. */
#ifndef _REGEXP_H
#define _REGEXP_H
#ifndef _COMPILER_H
#include <compiler.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
#define CHARBITS 0377
#define NSUBEXP 10
typedef struct regexp {
char *startp[NSUBEXP];
char *endp[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. */
} regexp;
__EXTERN regexp *regcomp __PROTO((char *_exp));
__EXTERN int regexec __PROTO((regexp *_prog, char *_string, int _bolflag));
__EXTERN void regsub __PROTO((regexp *_prog, char *_source, char *_dest));
__EXTERN void regerror __PROTO((char *_message));
__EXTERN void regdump __PROTO((regexp *r));
#ifdef __cplusplus
}
#endif
#endif /* _REGEXP_H */