File: regex.c

package info (click to toggle)
ng 1.4.3.1-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,540 kB
  • ctags: 3,967
  • sloc: ansic: 40,681; asm: 3,150; cpp: 1,243; makefile: 526; sh: 67
file content (22 lines) | stat: -rw-r--r-- 451 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* $Id: regex.c,v 1.1.1.1 2000/06/27 01:47:56 amura Exp $ */
/* This source is select Regular Expression routine */

/*
 * $Log: regex.c,v $
 * Revision 1.1.1.1  2000/06/27 01:47:56  amura
 * import to CVS
 *
 */

#include	"config.h"	/* 90.12.20  by S.Yoshida */

#ifdef REGEX
#include	"def.h"		/* defines VOID etc. for mg */
# define ng
# ifdef REGEX_JAPANESE
#  include	"kanji_.c"
#  include	"regex_j.c"
# else
#  include	"regex_e.c"
# endif
#endif