home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / gnurx.zip / rx / rxcset.h < prev    next >
C/C++ Source or Header  |  1995-12-31  |  2KB  |  51 lines

  1. /* classes: h_files */
  2.  
  3. #ifndef RXCSETH
  4. #define RXCSETH
  5.  
  6. /***********************************************************
  7.  
  8. Copyright 1995 by Tom Lord
  9.  
  10.                         All Rights Reserved
  11.  
  12. Permission to use, copy, modify, and distribute this software and its 
  13. documentation for any purpose and without fee is hereby granted, 
  14. provided that the above copyright notice appear in all copies and that
  15. both that copyright notice and this permission notice appear in 
  16. supporting documentation, and that the name of the copyright holder not be
  17. used in advertising or publicity pertaining to distribution of the
  18. software without specific, written prior permission.  
  19.  
  20. Tom Lord DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  21. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  22. EVENT SHALL TOM LORD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  23. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  24. USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  25. OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  26. PERFORMANCE OF THIS SOFTWARE.
  27.  
  28. ******************************************************************/
  29.  
  30. /*  lord    Sun May  7 12:34:11 1995    */
  31.  
  32.  
  33. #include "rxbitset.h"
  34.  
  35.  
  36. #ifdef __STDC__
  37. extern rx_Bitset rx_cset (int size);
  38. extern rx_Bitset rx_copy_cset (int size, rx_Bitset a);
  39. extern void rx_free_cset (rx_Bitset c);
  40.  
  41. #else /* STDC */
  42. extern rx_Bitset rx_cset ();
  43. extern rx_Bitset rx_copy_cset ();
  44. extern void rx_free_cset ();
  45.  
  46. #endif /* STDC */
  47.  
  48.  
  49.  
  50. #endif  /* RXCSETH */
  51.