| xj | b04a402 | 2021-11-25 15:01:52 +0800 | [diff] [blame] | 1 | #include <stdio.h> |
| 2 | |||||
| 3 | #define countof(a) (sizeof(a) / sizeof((a)[0])) | ||||
| 4 | |||||
| 5 | #include "float_test_vec.c" | ||||
| 6 | |||||
| 7 | int main(void) | ||||
| 8 | { | ||||
| 9 | printf("floating point printf tests\n"); | ||||
| 10 | |||||
| 11 | for (size_t i = 0; i < float_test_vec_size; i++) { | ||||
| 12 | PRINT_FLOAT; | ||||
| 13 | } | ||||
| 14 | |||||
| 15 | return 0; | ||||
| 16 | } | ||||
| 17 | |||||