File: regexp.h

package info (click to toggle)
lgrind 3.67-9
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid, trixie
  • size: 636 kB
  • sloc: ansic: 2,261; makefile: 96; asm: 75; sh: 28
file content (13 lines) | stat: -rw-r--r-- 385 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* sccsid[] = "@(#)regexp.h     3.6 (MPi) 3/8/98";
 * rcsid[] =
 * "$Id: regexp.h,v 1.3 1999/05/26 07:30:03 mike Exp $";
 * 
 * Created 19 February 1996
 */

typedef int    boolean;
#define TRUE   1
#define FALSE  0
int lc_strncmp(const char *s1, const char *s2, size_t len);
char *convexp(char *re);
char *expmatch(register char *s, register char *re, char **strtptr, char *mstring);