mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-trx.git
synced 2025-11-03 05:33:16 +00:00
For good practice, use const specifier when applicable. Signed-off-by: Tom Tsou <tom@tsou.cc>
8 lines
208 B
C
8 lines
208 B
C
#ifndef _CONVERT_H_
|
|
#define _CONVERT_H_
|
|
|
|
void convert_float_short(short *out, const float *in, float scale, int len);
|
|
void convert_short_float(float *out, const short *in, int len);
|
|
|
|
#endif /* _CONVERT_H_ */
|