Staging
v0.5.1
https://github.com/python/cpython
Revision 4f1eaf028058cc357030dfaa5e611c90662539f0 authored by Miss Islington (bot) on 01 December 2019, 23:24:17 UTC, committed by GitHub on 01 December 2019, 23:24:17 UTC

* bpo-38449: Add tricky test cases

* bpo-38449: Reflect codereview
(cherry picked from commit 2fe4c48917c2d1b40cf063c6ed22ae2e71f4cb62)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
1 parent d300c0e
Raw File
Tip revision: 4f1eaf028058cc357030dfaa5e611c90662539f0 authored by Miss Islington (bot) on 01 December 2019, 23:24:17 UTC
bpo-38449: Add URL delimiters test cases (GH-16729)
Tip revision: 4f1eaf0
bitset.h

#ifndef Py_BITSET_H
#define Py_BITSET_H
#ifdef __cplusplus
extern "C" {
#endif

/* Bitset interface */

#define BYTE            char
typedef BYTE *bitset;

#define testbit(ss, ibit) (((ss)[BIT2BYTE(ibit)] & BIT2MASK(ibit)) != 0)

#define BITSPERBYTE     (8*sizeof(BYTE))
#define BIT2BYTE(ibit)  ((ibit) / BITSPERBYTE)
#define BIT2SHIFT(ibit) ((ibit) % BITSPERBYTE)
#define BIT2MASK(ibit)  (1 << BIT2SHIFT(ibit))

#ifdef __cplusplus
}
#endif
#endif /* !Py_BITSET_H */
back to top