8 lines
138 B
C
8 lines
138 B
C
|
|
#ifndef _LIB_CONVERT_H_
|
||
|
|
#define _LIB_CONVERT_H_
|
||
|
|
|
||
|
|
#include <arpa/inet.h>//linux下大小端转换
|
||
|
|
|
||
|
|
float convert_endian(float x);
|
||
|
|
|
||
|
|
#endif
|