* Explain an unsigned integer-valued property. */
| 5591 | * Explain an unsigned integer-valued property. |
| 5592 | */ |
| 5593 | void |
| 5594 | ExplainPropertyUInteger(const char *qlabel, const char *unit, uint64 value, |
| 5595 | ExplainState *es) |
| 5596 | { |
| 5597 | char buf[32]; |
| 5598 | |
| 5599 | snprintf(buf, sizeof(buf), UINT64_FORMAT, value); |
| 5600 | ExplainProperty(qlabel, unit, buf, true, es); |
| 5601 | } |
| 5602 | |
| 5603 | /* |
| 5604 | * Explain a float-valued property, using the specified number of |
no test coverage detected