mirror of https://github.com/Nonannet/copapy.git
10 lines
192 B
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;
|
||
|
|
}
|