equivalent of corresponding file release

This commit is contained in:
Markus Fröschle
2013-10-15 07:49:49 +00:00
commit 63fb45f6ea
104 changed files with 55518 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
/*
* bas_utils.h
*
* Created on: 08.08.2013
* Author: froesm1
*/
#ifndef _BAS_UTILS_H_
#define _BAS_UTILS_H_
#define CLEAR_BIT(p,bit) p &= ~(bit)
#define CLEAR_BIT_NO(p,nr) CLEAR_BIT(p, (1 << (nr)))
#endif /* _BAS_UTILS_H_ */