regexp.h
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:1k
源码类别:

编辑器/阅读器

开发平台:

DOS

  1. /* vi:set ts=8 sts=4 sw=4:
  2.  * NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE
  3.  *
  4.  * This is NOT the original regular expression code as written by
  5.  * Henry Spencer. This code has been modified specifically for use
  6.  * with the VIM editor, and should not be used apart from compiling
  7.  * VIM. If you want a good regular expression library, get the
  8.  * original code.
  9.  *
  10.  * NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE
  11.  *
  12.  * Definitions etc. for regexp(3) routines.
  13.  */
  14. #ifndef _REGEXP_H
  15. #define _REGEXP_H
  16. #define NSUBEXP  10
  17. typedef struct
  18. {
  19.     char_u    *startp[NSUBEXP];
  20.     char_u    *endp[NSUBEXP];
  21.     char_u     regstart; /* Internal use only. */
  22.     char_u     reganch; /* Internal use only. */
  23.     char_u    *regmust; /* Internal use only. */
  24.     int     regmlen; /* Internal use only. */
  25.     char_u     program[1]; /* Unwarranted chumminess with compiler. */
  26. } vim_regexp;
  27. /*
  28.  * The first byte of the regexp internal "program" is actually this magic
  29.  * number; the start node begins in the second byte.
  30.  */
  31. #define MAGIC 0234
  32. #endif /* _REGEXP_H */