Gitiles
Code Review
Sign In
192.168.1.100
/
T103
/
1f884588077ad3476b9c91cbb0ee9ee0332bbb68
/
.
/
src
/
bsp
/
lk
/
app
/
tests
/
float_print_host.c
blob: 117687636f568d9e8cf4737e20361a0f0cdf7313 [
file
] [
log
] [
blame
]
#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
;
}