copapy/stencils/test.c

10 lines
192 B
C

#include "aux_functions.c"
int main() {
// Test aux functions
float a = 16.0f;
float div_result = (float)floor_div(-7.0f, 3.0f);
float g42 = aux_get_42(0.0f);
return 0;
}