home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 278.lha / RegexLibrary_v1.0 / regex.i < prev    next >
Text File  |  1989-08-06  |  825b  |  33 lines

  1. ;  Assembler include file for the GNU regular expression library.
  2. ;  Edwin Hoogerbeets 18/07/89
  3. ;
  4. ;  This file may be copied and distributed under the GNU Public
  5. ;  Licence. See the comment at the top of regex.c for details.
  6. ;
  7. ;  Adapted from Elib by Jim Mackraz and mklib by Edwin Hoogerbeets.
  8. ;
  9.  
  10.         include 'exec/types.i'
  11.         include 'exec/libraries.i'
  12.  
  13.         LIBINIT
  14.         LIBDEF _LVOre_initialize_buffer
  15.         LIBDEF _LVOre_terminate_buffer
  16.         LIBDEF _LVOre_compile_pattern
  17.         LIBDEF _LVOre_compile_fastmap
  18.         LIBDEF _LVOre_search
  19.         LIBDEF _LVOre_search_2
  20.         LIBDEF _LVOre_match
  21.         LIBDEF _LVOre_match_2
  22.  
  23.         public _RegexBase
  24.         public ___Upcase
  25.  
  26.         public _re_BSD_initialize
  27.         public _re_BSD_terminate
  28.         public _re_comp
  29.         public _re_exec
  30.  
  31.  
  32.  
  33.