File: README

package info (click to toggle)
global 3.55-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,336 kB
  • ctags: 1,634
  • sloc: ansic: 12,863; perl: 1,670; lisp: 325; sh: 188; makefile: 95
file content (21 lines) | stat: -rw-r--r-- 358 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Regex library derived from FreeBSD-2.2.5R.

I have modified like follows.

All files:
	#include <regex.h> -> #include "regex.h"
	delete __P()
regcomp.c:
	following code added.

	#ifndef BSD4_4
	int __collate_range_cmp (c1, c2)
	int c1;
	int c2;
	{
	      return c1 - c2;
	}
	#ifndef isblank
	#define isblank(c)    ((c) == ' ' || (c) == '\t')
	#endif
	#endif