1 /* classes: h_files */ 2 3 #ifndef RXCSETH 4 #define RXCSETH 5 6 /* Copyright (C) 1995, 1996 Tom Lord 7 * 8 * This program is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU Library General Public License as published by 10 * the Free Software Foundation; either version 2, or (at your option) 11 * any later version. 12 * 13 * This program is distributed in the hope that it will be useful, 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 * GNU Library General Public License for more details. 17 * 18 * You should have received a copy of the GNU Library General Public License 19 * along with this software; see the file COPYING. If not, write to 20 * the Free Software Foundation, 59 Temple Place - Suite 330, 21 * Boston, MA 02111-1307, USA. 22 */ 23 24 /* lord Sun May 7 12:34:11 1995 */ 25 26 27 #include "rxbitset.h" 28 29 30 #ifdef __STDC__ 31 extern rx_Bitset rx_cset (int size); 32 extern rx_Bitset rx_copy_cset (int size, rx_Bitset a); 33 extern void rx_free_cset (rx_Bitset c); 34 35 #else /* STDC */ 36 extern rx_Bitset rx_cset (); 37 extern rx_Bitset rx_copy_cset (); 38 extern void rx_free_cset (); 39 40 #endif /* STDC */ 41 42 43 44 #endif /* RXCSETH */ 45