Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
regexp.h
Package: vim53src.zip [view]
Upload User: gddssl
Upload Date: 2007-01-06
Package Size: 1003k
Code Size: 1k
Category:
Editor
Development Platform:
DOS
- /* vi:set ts=8 sts=4 sw=4:
- * NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE
- *
- * This is NOT the original regular expression code as written by
- * Henry Spencer. This code has been modified specifically for use
- * with the VIM editor, and should not be used apart from compiling
- * VIM. If you want a good regular expression library, get the
- * original code.
- *
- * NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE
- *
- * Definitions etc. for regexp(3) routines.
- */
- #ifndef _REGEXP_H
- #define _REGEXP_H
- #define NSUBEXP 10
- typedef struct
- {
- char_u *startp[NSUBEXP];
- char_u *endp[NSUBEXP];
- char_u regstart; /* Internal use only. */
- char_u reganch; /* Internal use only. */
- char_u *regmust; /* Internal use only. */
- int regmlen; /* Internal use only. */
- char_u program[1]; /* Unwarranted chumminess with compiler. */
- } vim_regexp;
- /*
- * The first byte of the regexp internal "program" is actually this magic
- * number; the start node begins in the second byte.
- */
- #define MAGIC 0234
- #endif /* _REGEXP_H */