SXXXXXXX_RadarDataReader/_src_cpp/Files/math_32.cpp
VALLONGOL 5de2650675 add
2025-11-12 13:43:30 +01:00

20 lines
156 B
C++

/*
* math_32.cpp
*
*/
#include "math_32.h"
float math32_div(float a, float b)
{
return a/b;
}
float math32_mul(float a, float b)
{
return a*b;
}