12 lines
188 B
C
12 lines
188 B
C
![]() |
#ifndef __ALG_H__
|
||
|
#define __ALG_H__
|
||
|
|
||
|
typedef unsigned int uint32_t;
|
||
|
typedef unsigned short uint16_t;
|
||
|
typedef unsigned char uint8_t;
|
||
|
|
||
|
extern int find_lsb(uint32_t ui32);
|
||
|
|
||
|
|
||
|
#endif
|