2019NHK_teamA / bitset

bit_set.h

Committer:
yosino_adati
Date:
2019-09-09
Revision:
1:4b6bf9473b7d
Parent:
0:e260b26ee5fb
Child:
2:eeaee1039d50

File content as of revision 1:4b6bf9473b7d:

/*
This header can only be used for 8bit variables.
*/

#ifndef BIT_SET_H
#define BIT_SET_H

    void bit_ini(char var);
    void bit_set(char var,int cons);
    void bit_clear(char var,int cons);
    bool bit_check(char var,int cons);
    

#endif