mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
17 lines
226 B
C
17 lines
226 B
C
#ifndef _JAUDIO_CENTCALC_H
|
|
#define _JAUDIO_CENTCALC_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // ifdef __cplusplus
|
|
|
|
f32 Jam_PitchToCent(f32, f32);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif // ifdef __cplusplus
|
|
|
|
#endif
|