home *** CD-ROM | disk | FTP | other *** search
/ The Best of Mecomp Multimedia 2 / MECOMP-CD-II.iso / amiga / tools / libs / regexp / include / clib / regexp_protos.h
Encoding:
C/C++ Source or Header  |  1998-02-19  |  435 b   |  24 lines

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