home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 4 / MA_Cover_4.iso / libs / regexp / include / clib / regexp_protos.h
Encoding:
C/C++ Source or Header  |  1998-02-26  |  407 b   |  23 lines

  1. #ifndef  CLIB_REGEXP_PROTOS_H
  2. #define  CLIB_REGEXP_PROTOS_H
  3.  
  4. /*
  5. **    $VER: regexp_protos.h 38.1 (26.2.98)
  6. **
  7. **    (C) Copyright 1998 Matthias Bethke
  8. */
  9.  
  10. #ifndef  EXEC_TYPES_H
  11. #include <exec/types.h>
  12. #endif
  13. #ifndef LIBRARIES_REGEXP_H
  14. #include <libraries/regexp.h>
  15. #endif
  16.  
  17. regexp *RegComp(STRPTR);
  18. void RegFree(regexp*);
  19. LONG RegExec(regexp*,STRPTR);
  20. STRPTR RegXlatError(LONG);
  21.  
  22. #endif /* CLIB_REGEXP_PROTOS_H */
  23.