[PHP-DEV] CVS update: php3/regex From: sas (php-dev <email protected>)
Date: 12/28/98

Date: Monday December 28, 1998 @ 4:35
Author: sas

Update of /repository/php3/regex
In directory asf:/u/temp/cvs-serv10759/regex

Modified Files:
        cclass.h cname.h debug.c engine.c main.c regcomp.c regerror.c
        regex.h regex2.h regexec.c regfree.c split.c utils.h
Log Message:
add some Id keywords

Index: php3/regex/cclass.h
diff -c php3/regex/cclass.h:1.3 php3/regex/cclass.h:1.4
*** php3/regex/cclass.h:1.3 Fri Nov 14 16:43:10 1997
--- php3/regex/cclass.h Mon Dec 28 04:35:00 1998
***************
*** 1,4 ****
! /* character-class table */
  static struct cclass {
          char *name;
          char *chars;
--- 1,5 ----
! /* $id$
! character-class table */
  static struct cclass {
          char *name;
          char *chars;
Index: php3/regex/cname.h
diff -c php3/regex/cname.h:1.3 php3/regex/cname.h:1.4
*** php3/regex/cname.h:1.3 Fri Nov 14 16:43:11 1997
--- php3/regex/cname.h Mon Dec 28 04:35:00 1998
***************
*** 1,4 ****
! /* character-name table */
  static struct cname {
          char *name;
          char code;
--- 1,5 ----
! /* $id$
! character-name table */
  static struct cname {
          char *name;
          char code;
Index: php3/regex/debug.c
diff -c php3/regex/debug.c:1.3 php3/regex/debug.c:1.4
*** php3/regex/debug.c:1.3 Fri Nov 14 16:43:11 1997
--- php3/regex/debug.c Mon Dec 28 04:35:00 1998
***************
*** 10,15 ****
--- 10,17 ----
  #include "regex2.h"
  #include "debug.ih"
  
+ /* $Id: debug.c,v 1.4 1998/12/28 09:35:00 sas Exp $ */
+
  /*
   - regprint - print a regexp for debugging
   == void regprint(regex_t *r, FILE *d);
Index: php3/regex/engine.c
diff -c php3/regex/engine.c:1.4 php3/regex/engine.c:1.5
*** php3/regex/engine.c:1.4 Fri Nov 14 16:52:57 1997
--- php3/regex/engine.c Mon Dec 28 04:35:00 1998
***************
*** 5,10 ****
--- 5,12 ----
   * of code.
   */
  
+ /* $id$ */
+
  #ifdef SNAMES
  #define matcher smatcher
  #define fast sfast
Index: php3/regex/main.c
diff -c php3/regex/main.c:1.3 php3/regex/main.c:1.4
*** php3/regex/main.c:1.3 Fri Nov 14 16:43:11 1997
--- php3/regex/main.c Mon Dec 28 04:35:00 1998
***************
*** 1,3 ****
--- 1,4 ----
+ /* $id$ */
  #include <stdio.h>
  #include <string.h>
  #include <sys/types.h>
Index: php3/regex/regcomp.c
diff -c php3/regex/regcomp.c:1.4 php3/regex/regcomp.c:1.5
*** php3/regex/regcomp.c:1.4 Fri Nov 14 16:52:57 1997
--- php3/regex/regcomp.c Mon Dec 28 04:35:01 1998
***************
*** 1,3 ****
--- 1,5 ----
+ /* $id$ */
+
  #include <sys/types.h>
  #include <stdio.h>
  #include <string.h>
Index: php3/regex/regerror.c
diff -c php3/regex/regerror.c:1.3 php3/regex/regerror.c:1.4
*** php3/regex/regerror.c:1.3 Fri Nov 14 16:43:12 1997
--- php3/regex/regerror.c Mon Dec 28 04:35:01 1998
***************
*** 1,3 ****
--- 1,5 ----
+ /* $id$ */
+
  #include <sys/types.h>
  #include <stdio.h>
  #include <string.h>
Index: php3/regex/regex.h
diff -c php3/regex/regex.h:1.3 php3/regex/regex.h:1.4
*** php3/regex/regex.h:1.3 Fri Nov 14 16:43:12 1997
--- php3/regex/regex.h Mon Dec 28 04:35:01 1998
***************
*** 1,3 ****
--- 1,5 ----
+ /* $id$ */
+
  #ifndef _REGEX_H_
  #define _REGEX_H_ /* never again */
  /* ========= begin header generated by ./mkh ========= */
Index: php3/regex/regex2.h
diff -c php3/regex/regex2.h:1.3 php3/regex/regex2.h:1.4
*** php3/regex/regex2.h:1.3 Fri Nov 14 16:43:12 1997
--- php3/regex/regex2.h Mon Dec 28 04:35:01 1998
***************
*** 1,4 ****
--- 1,6 ----
  /*
+ * $id$
+ *
   * First, the stuff that ends up in the outside-world include file
   = #ifdef WIN32
   = #define API_EXPORT(type) __declspec(dllexport) type __stdcall
Index: php3/regex/regexec.c
diff -c php3/regex/regexec.c:1.3 php3/regex/regexec.c:1.4
*** php3/regex/regexec.c:1.3 Fri Nov 14 16:43:12 1997
--- php3/regex/regexec.c Mon Dec 28 04:35:01 1998
***************
*** 4,10 ****
--- 4,13 ----
   * This file includes engine.c *twice*, after muchos fiddling with the
   * macros that code uses. This lets the same code operate on two different
   * representations for state sets.
+ *
+ * $id$
   */
+
  #include <sys/types.h>
  #include <stdio.h>
  #include <stdlib.h>
Index: php3/regex/regfree.c
diff -c php3/regex/regfree.c:1.3 php3/regex/regfree.c:1.4
*** php3/regex/regfree.c:1.3 Fri Nov 14 16:43:12 1997
--- php3/regex/regfree.c Mon Dec 28 04:35:01 1998
***************
*** 1,3 ****
--- 1,5 ----
+ /* $id$ */
+
  #include <sys/types.h>
  #include <stdio.h>
  #include <stdlib.h>
Index: php3/regex/split.c
diff -c php3/regex/split.c:1.2 php3/regex/split.c:1.3
*** php3/regex/split.c:1.2 Wed Sep 10 23:38:04 1997
--- php3/regex/split.c Mon Dec 28 04:35:01 1998
***************
*** 1,3 ****
--- 1,5 ----
+ /* $id$ */
+
  #include <stdio.h>
  #include <string.h>
  
Index: php3/regex/utils.h
diff -c php3/regex/utils.h:1.4 php3/regex/utils.h:1.5
*** php3/regex/utils.h:1.4 Fri Nov 14 16:43:12 1997
--- php3/regex/utils.h Mon Dec 28 04:35:02 1998
***************
*** 1,3 ****
--- 1,5 ----
+ /* $id$ */
+
  /* utility definitions */
  #ifndef _POSIX2_RE_DUP_MAX
  #define _POSIX2_RE_DUP_MAX 255

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>