regexp.h 803 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Definitions etc. for regexp(3) routines.
  3. *
  4. * Caveat: this is V8 regexp(3) [actually, a reimplementation thereof],
  5. * not the System V one.
  6. */
  7. #ifndef _PAX_REGEXP_H
  8. #define _PAX_REGEXP_H
  9. #define NSUBEXP 10
  10. typedef struct regexp {
  11. char *startp[NSUBEXP];
  12. char *endp[NSUBEXP];
  13. char regstart; /* Internal use only. */
  14. char reganch; /* Internal use only. */
  15. char *regmust; /* Internal use only. */
  16. int regmlen; /* Internal use only. */
  17. char program[1]; /* Unwarranted chumminess with compiler. */
  18. } regexp;
  19. /*
  20. * The first byte of the regexp internal "program" is actually this magic
  21. * number; the start node begins in the second byte.
  22. */
  23. #define MAGIC 0234
  24. extern regexp *regcomp();
  25. extern int regexec();
  26. extern void regsub();
  27. extern void regerror();
  28. #endif /* _PAX_REGEXP_H */