Files
tp/include/MSL_C/bitset.h
T
TakaRikka 85827b28ff d_a_vrbox / d_a_kytag02 / d_a_obj_eff OK (#327)
* d_a_vrbox / d_a_kytag02 / d_a_obj_eff OK

* some std header setups

* f_pc / profile cleanup

* setup cull data

* remove asm

* d_a_suspend OK
2023-05-05 16:17:19 -07:00

17 lines
259 B
C++

#ifndef MSL_BITSET_H_
#define MSL_BITSET_H_
#include "stddef.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