PATH:
usr
/
include
/
python2.7
#ifndef Py_BITSET_H #define Py_BITSET_H #ifdef __cplusplus extern "C" { #endif /* Bitset interface */ #define BYTE char typedef BYTE *bitset; bitset newbitset(int nbits); void delbitset(bitset bs); #define testbit(ss, ibit) (((ss)[BIT2BYTE(ibit)] & BIT2MASK(ibit)) != 0) int addbit(bitset bs, int ibit); /* Returns 0 if already set */ int samebitset(bitset bs1, bitset bs2, int nbits); void mergebitset(bitset bs1, bitset bs2, int nbits); #define BITSPERBYTE (8*sizeof(BYTE)) #define NBYTES(nbits) (((nbits) + BITSPERBYTE - 1) / BITSPERBYTE) #define BIT2BYTE(ibit) ((ibit) / BITSPERBYTE) #define BIT2SHIFT(ibit) ((ibit) % BITSPERBYTE) #define BIT2MASK(ibit) (1 << BIT2SHIFT(ibit)) #define BYTE2BIT(ibyte) ((ibyte) * BITSPERBYTE) #ifdef __cplusplus } #endif #endif /* !Py_BITSET_H */
[-] pydebug.h
[open]
[-] eval.h
[open]
[-] longobject.h
[open]
[+]
..
[-] descrobject.h
[open]
[-] iterobject.h
[open]
[-] bufferobject.h
[open]
[-] ceval.h
[open]
[-] sliceobject.h
[open]
[-] pystrcmp.h
[open]
[-] opcode.h
[open]
[-] pyexpat.h
[open]
[-] fileobject.h
[open]
[-] symtable.h
[open]
[-] frameobject.h
[open]
[-] errcode.h
[open]
[-] objimpl.h
[open]
[-] structseq.h
[open]
[-] pystate.h
[open]
[-] object.h
[open]
[-] sysmodule.h
[open]
[-] token.h
[open]
[-] moduleobject.h
[open]
[-] graminit.h
[open]
[-] floatobject.h
[open]
[-] complexobject.h
[open]
[-] ucnhash.h
[open]
[-] listobject.h
[open]
[-] py_curses.h
[open]
[-] pyarena.h
[open]
[-] cobject.h
[open]
[-] asdl.h
[open]
[-] pgenheaders.h
[open]
[-] pyfpe.h
[open]
[-] pyconfig.h
[open]
[-] marshal.h
[open]
[-] bitset.h
[open]
[-] pystrtod.h
[open]
[-] intrcheck.h
[open]
[-] traceback.h
[open]
[-] parsetok.h
[open]
[-] osdefs.h
[open]
[-] pyctype.h
[open]
[-] abstract.h
[open]
[-] pymacconfig.h
[open]
[-] metagrammar.h
[open]
[-] setobject.h
[open]
[-] bytearrayobject.h
[open]
[-] modsupport.h
[open]
[-] pythonrun.h
[open]
[-] pgen.h
[open]
[-] enumobject.h
[open]
[-] longintrepr.h
[open]
[-] genobject.h
[open]
[-] datetime.h
[open]
[-] bytes_methods.h
[open]
[-] boolobject.h
[open]
[-] pyport.h
[open]
[-] dtoa.h
[open]
[-] weakrefobject.h
[open]
[-] memoryobject.h
[open]
[-] pygetopt.h
[open]
[-] cellobject.h
[open]
[-] Python.h
[open]
[-] pyconfig-64.h
[open]
[-] pymem.h
[open]
[-] compile.h
[open]
[-] bytesobject.h
[open]
[-] pycapsule.h
[open]
[-] code.h
[open]
[-] codecs.h
[open]
[-] pyerrors.h
[open]
[-] tupleobject.h
[open]
[-] grammar.h
[open]
[-] funcobject.h
[open]
[-] structmember.h
[open]
[-] node.h
[open]
[-] stringobject.h
[open]
[-] ast.h
[open]
[-] pymactoolbox.h
[open]
[-] cStringIO.h
[open]
[-] rangeobject.h
[open]
[-] intobject.h
[open]
[-] warnings.h
[open]
[-] methodobject.h
[open]
[-] import.h
[open]
[-] patchlevel.h
[open]
[-] classobject.h
[open]
[-] pythread.h
[open]
[-] Python-ast.h
[open]
[-] unicodeobject.h
[open]
[-] pymath.h
[open]
[-] dictobject.h
[open]
[-] timefuncs.h
[open]