Subversion Repositories Kolibri OS

Rev

Rev 5191 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5191 Rev 6324
Line 1... Line 1...
1
/* Header file the type CGEN_BITSET.
1
/* Header file the type CGEN_BITSET.
2
   Copyright 2002, 2005, 2009 Free Software Foundation, Inc.
2
   Copyright (C) 2002-2015 Free Software Foundation, Inc.
Line 3... Line 3...
3
 
3
 
Line 4... Line 4...
4
   This file is part of the GNU opcodes library.
4
   This file is part of the GNU opcodes library.
5
 
5
 
Line 36... Line 36...
36
{
36
{
37
  unsigned length;
37
  unsigned length;
38
  char *bits;
38
  char *bits;
39
} CGEN_BITSET;
39
} CGEN_BITSET;
Line 40... Line 40...
40
 
40
 
41
extern CGEN_BITSET *cgen_bitset_create PARAMS ((unsigned));
41
extern CGEN_BITSET *cgen_bitset_create (unsigned);
42
extern void cgen_bitset_init PARAMS ((CGEN_BITSET *, unsigned));
42
extern void cgen_bitset_init (CGEN_BITSET *, unsigned);
43
extern void cgen_bitset_clear PARAMS ((CGEN_BITSET *));
43
extern void cgen_bitset_clear (CGEN_BITSET *);
44
extern void cgen_bitset_add PARAMS ((CGEN_BITSET *, unsigned));
44
extern void cgen_bitset_add (CGEN_BITSET *, unsigned);
45
extern void cgen_bitset_set PARAMS ((CGEN_BITSET *, unsigned));
45
extern void cgen_bitset_set (CGEN_BITSET *, unsigned);
46
extern int cgen_bitset_compare PARAMS ((CGEN_BITSET *, CGEN_BITSET *));
46
extern int cgen_bitset_compare (CGEN_BITSET *, CGEN_BITSET *);
47
extern void cgen_bitset_union PARAMS ((CGEN_BITSET *, CGEN_BITSET *, CGEN_BITSET *));
47
extern void cgen_bitset_union (CGEN_BITSET *, CGEN_BITSET *, CGEN_BITSET *);
48
extern int cgen_bitset_intersect_p PARAMS ((CGEN_BITSET *, CGEN_BITSET *));
48
extern int cgen_bitset_intersect_p (CGEN_BITSET *, CGEN_BITSET *);
49
extern int cgen_bitset_contains PARAMS ((CGEN_BITSET *, unsigned));
49
extern int cgen_bitset_contains (CGEN_BITSET *, unsigned);
Line 50... Line 50...
50
extern CGEN_BITSET *cgen_bitset_copy PARAMS ((CGEN_BITSET *));
50
extern CGEN_BITSET *cgen_bitset_copy (CGEN_BITSET *);
51
 
51
 
52
#ifdef __cplusplus
52
#ifdef __cplusplus