tclRegexp.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * tclRegexp.h --
  3.  *
  4.  *  This file contains definitions used internally by Henry
  5.  * Spencer's regular expression code.
  6.  *
  7.  * Copyright (c) 1998 by Sun Microsystems, Inc.
  8.  * Copyright (c) 1998-1999 by Scriptics Corporation.
  9.  *
  10.  * See the file "license.terms" for information on usage and redistribution
  11.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12.  *
  13.  * RCS: @(#) $Id: tclRegexp.h,v 1.11 1999/08/02 17:45:38 redman Exp $
  14.  */
  15. #ifndef _TCLREGEXP
  16. #define _TCLREGEXP
  17. #include "regex.h"
  18. #ifdef BUILD_tcl
  19. # undef TCL_STORAGE_CLASS
  20. # define TCL_STORAGE_CLASS DLLEXPORT
  21. #endif
  22. /*
  23.  * The TclRegexp structure encapsulates a compiled regex_t,
  24.  * the flags that were used to compile it, and an array of pointers
  25.  * that are used to indicate subexpressions after a call to Tcl_RegExpExec.
  26.  * Note that the string and objPtr are mutually exclusive.  These values
  27.  * are needed by Tcl_RegExpRange in order to return pointers into the
  28.  * original string.
  29.  */
  30. typedef struct TclRegexp {
  31.     int flags; /* Regexp compile flags. */
  32.     regex_t re; /* Compiled re, includes number of
  33.  * subexpressions. */
  34.     CONST char *string; /* Last string passed to Tcl_RegExpExec. */
  35.     Tcl_Obj *objPtr; /* Last object passed to Tcl_RegExpExecObj. */
  36.     regmatch_t *matches; /* Array of indices into the Tcl_UniChar
  37.  * representation of the last string matched
  38.  * with this regexp to indicate the location
  39.  * of subexpressions. */
  40.     rm_detail_t details; /* Detailed information on match (currently
  41.  * used only for REG_EXPECT). */
  42.     int refCount; /* Count of number of references to this
  43.  * compiled regexp. */
  44. } TclRegexp;
  45. #endif /* _TCLREGEXP */