mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
85827b28ff
* 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
17 lines
259 B
C++
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
|