summaryrefslogtreecommitdiff
path: root/include/MSL_C/bitset.h
blob: e48e32efcfb9cb3112b5b16fc4b2de0174682d2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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