Almost nothing changes here except moving braces to the same line as the function declaration. Everything else is largely whitespace changes and a few dangling files with tab indents. See scripts/codestyle
17 lines
261 B
C
17 lines
261 B
C
#include <stdio.h>
|
|
|
|
#define countof(a) (sizeof(a) / sizeof((a)[0]))
|
|
|
|
#include "float_test_vec.c"
|
|
|
|
int main(void) {
|
|
printf("floating point printf tests\n");
|
|
|
|
for (size_t i = 0; i < float_test_vec_size; i++) {
|
|
PRINT_FLOAT;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|