Files
tww/include/MSL_C/bitset.h
T
Luke Street adb95b135c Import project
Original repository: https://github.com/encounter/ww
2023-09-10 00:48:55 -04:00

16 lines
239 B
C++

#ifndef MSL_BITSET_H_
#define MSL_BITSET_H_
namespace std {
template <size_t N>
class bitset {
bitset();
void set(size_t pos, bool val);
void reset(size_t pos);
bool test(size_t pos) const;
};
} // namespace std
#endif