home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / uccs / root.14 / udk / usr / include / regexpr.h < prev    next >
C/C++ Source or Header  |  1998-08-19  |  1KB  |  35 lines

  1. /*
  2.  * Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved. 
  3.  *                                                                         
  4.  *        THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE               
  5.  *                   SANTA CRUZ OPERATION INC.                             
  6.  *                                                                         
  7.  *   The copyright notice above does not evidence any actual or intended   
  8.  *   publication of such source code.                                      
  9.  */
  10.  
  11. #ifndef _REGEXPR_H
  12. #define _REGEXPR_H
  13. #ident    "@(#)libgen:regexpr.h    1.3.1.1"
  14.  
  15. #define    NBRA 9
  16.  
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20.  
  21. extern char    *braslist[NBRA];
  22. extern char    *braelist[NBRA];
  23. extern int    nbra, regerrno, reglength;
  24. extern char    *loc1, *loc2, *locs;
  25.  
  26. extern int    advance(const char *, const char *);
  27. extern char    *compile(const char *, char *, char *);
  28. extern int    step(const char *, const char *);
  29.  
  30. #ifdef __cplusplus
  31. }
  32. #endif
  33.  
  34. #endif /*_REGEXPR_H*/
  35.