1 #ifndef _CONVERSION_ROUTINES_H_ 2 #define _CONVERSION_ROUTINES_H_ 3 4 void kst_float_to_q15_vector( 5 void* pDst, 6 void* pSrc, 7 uint32_t elCnt); 8 9 void kst_float_to_IEEE_float( 10 void* pDst, 11 void* pSrc); 12 13 #endif // ifndef _CONVERSION_ROUTINES_H_ 14