blob: 52f9f2cf9b88959e2a6e43b40607849ecb9ebbcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* Scilab2C FOSSEE IITB */
#ifndef __BITSET_H__
#define __BITSET_H__
#include "dynlib_elementaryfunctions.h"
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
EXTERN_ELEMFUNCT uint8 u8bitsets(uint8 value,int position,int bit_value);
EXTERN_ELEMFUNCT uint16 u16bitsets(uint16 value,int position,int bit_value);
#ifdef __cplusplus
} /*extern "C" */
#endif
#endif /* !__BITSET_H__ */
|