| 507 | } |
| 508 | |
| 509 | void yaml_printfloat(const char* key, const float value, int indent) |
| 510 | { |
| 511 | for (int i = 0; i < indent; i++) { |
| 512 | putchar(' '); |
| 513 | } |
| 514 | printf("%s: %g\n", yaml_replace_spaces_with_dash(key), value); |
| 515 | } |
| 516 | |
| 517 | const char* yaml_replace_spaces_with_dash(const char* str) |
| 518 | { |
no test coverage detected