Changeset 998 for trunk/src/emx/include/regexp.h
- Timestamp:
- Jan 18, 2004, 6:32:27 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/src/emx/include/regexp.h (modified) (3 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/regexp.h
-
Property cvs2svn:cvs-rev
changed from
1.1to1.2
r997 r998 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 1 48 /* 2 49 * Definitions etc. for regexp(3) routines. … … 5 52 * not the System V one. 6 53 */ 7 8 #ifndef _REGEXP_H9 #define _REGEXP_H10 11 #if defined (__cplusplus)12 extern "C" {13 #endif14 15 54 #define NSUBEXP 10 16 55 typedef struct regexp { … … 24 63 } regexp; 25 64 26 extern regexp *regcomp(); 27 extern int regexec(); 28 extern void regsub(); 29 extern void regerror(); 65 #include <sys/cdefs.h> 30 66 31 #if defined (__cplusplus) 32 } 33 #endif 67 __BEGIN_DECLS 68 regexp *regcomp(const char *); 69 int regexec(const regexp *, const char *); 70 void regsub(const regexp *, const char *, char *); 71 void regerror(const char *); 72 __END_DECLS 34 73 35 #endif /* not _REGEXP_H*/74 #endif /* */ -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
