dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnet/include il_utils.h,1.19,1.20


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnet/include il_utils.h,1.19,1.20
Date: Sat, 14 Dec 2002 18:24:41 -0500

Update of /cvsroot/dotgnu-pnet/pnet/include
In directory subversions:/tmp/cvs-serv20326/include

Modified Files:
        il_utils.h 
Log Message:


Use the builtin pnet regex routines in "lib_regexp.c"; remove
all references to the system regex library from the build system.


Index: il_utils.h
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/include/il_utils.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** il_utils.h  14 Dec 2002 22:16:59 -0000      1.19
--- il_utils.h  14 Dec 2002 23:24:39 -0000      1.20
***************
*** 498,538 ****
  void *ILQueueRemove(ILQueueEntry **listRoot);
  
- /*
-  * Opaque handle for regexp_
-  */
- typedef void* ILRegexpHandle;
- 
- /*
-  * Non-Opaque handle for regexp results
-  */
- struct _ILRegexpMatch
- {
-       int start;
-       int end;
- };
- typedef struct _ILRegexpMatch ILRegexpMatch;
- 
- /* 
-  * Regexp compile mapping on to regcomp 
-  */
- ILRegexpHandle ILRegexpCompile(char* pattern,int flags, int* error);
- 
- /*
-  * Regexp execute mapping onto regexec
-  * Note: match is allocated inside this function
-  */
- int ILRegexpExec(ILRegexpHandle handle,char* input,int flags,
-                                                                               
ILRegexpMatch** match);
- 
- /*
-  * Regexp error reporting function (auto alloc)
-  */
- char* ILRegexpError(int errorcode, ILRegexpHandle handle);
- 
- /*
-  * Regexp free to free the handle
-  */
- void ILRegexpFree(ILRegexpHandle handle);
- 
  #ifdef        __cplusplus
  };
--- 498,501 ----




reply via email to

[Prev in Thread] Current Thread [Next in Thread]