/* Prototypes for functions defined in
regexp.c
 */

#ifndef boolean
typedef int	boolean;
#define TRUE	1
#define FALSE	0
#endif

int lc_strncmp(char * , char * , size_t );

extern char * ure;

extern char * ccre;

char * convexp(char * );

void expconv(void);

extern boolean _escaped;

extern char * _start;

char * expmatch(char * , char * , char ** , char * );

