(enum_bitset_ops, enum_bitset_type): Remove.

All uses of "enum_" changed to "enum ".
This commit is contained in:
Paul Eggert
2002-10-16 06:16:29 +00:00
parent a911db9cba
commit 59fc3dcdf4

View File

@@ -25,21 +25,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include <limits.h> #include <limits.h>
#endif #endif
/* Use the following types for function parameters where the
corresponding enum would be the correct type if we could use
prototyped function definitions. Standard C says that one cannot
portably use an enum as a parameter of an old-style function
definition that is also declared with a prototype. */
typedef int enum_bitset_ops;
typedef int enum_bitset_type;
/* Currently we support three flavours of bitsets: /* Currently we support three flavours of bitsets:
BITSET_ARRAY: Array of bits (fixed size, fast for dense bitsets). BITSET_ARRAY: Array of bits (fixed size, fast for dense bitsets).
BITSET_LIST: Linked list of array of bits (variable size, least storage BITSET_LIST: Linked list of array of bits (variable size, least storage
for large very sparse sets). for large very sparse sets).
BITSET_TABLE: Expandable table of pointers to array of bits BITSET_TABLE: Expandable table of pointers to array of bits
(variable size, less storage for large sparse sets). (variable size, less storage for large sparse sets).
BITSET_STATS: Wrapper bitset for internal use only. BITSET_STATS: Wrapper bitset for internal use only.
*/ */