20 lines
520 B
C
Executable File
20 lines
520 B
C
Executable File
/***************************************************************/
|
|
/* paramutils.h
|
|
/***************************************************************/
|
|
#ifndef PARAMUTILS_H
|
|
#define PARAMUTILS_H
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
/***************************************************************/
|
|
|
|
float ParamQuantize(float value, float quantization);
|
|
|
|
|
|
/***************************************************************/
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif /* cplusplus */
|
|
|
|
#endif /* PARAMUTILS_H */
|