summaryrefslogtreecommitdiff
path: root/src/c/elementaryFunctions/includes/bitget.h
blob: 0eaf57eb9d73f9f58ca6fc716f7ec0fd739dad9f (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 __BITGET_H__
#define __BITGET_H__



#include "dynlib_elementaryfunctions.h"
#include "types.h"

#ifdef __cpluscplus
extern "C" {
#endif


EXTERN_ELEMFUNCT uint8 u8bitgets(uint8 value,int position);

EXTERN_ELEMFUNCT uint16 u16bitgets(uint16 value,int position);

#ifdef __cplusplus

} /*extern "C" */
#endif

#endif /* !__BITGET_H__ */