Files
lk/app/tests/float_print_host.c
Travis Geiselbrecht d8fa82cb91 [formatting] run everything through codestyle
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
2019-06-19 21:02:24 -07:00

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;
}