* <!-- description --> * @brief Outputs a string and an 64bit dec to the console * * <!-- inputs/outputs --> * @param str the string to output * @param val the 64bit dec value to output */
| 291 | * @param val the 64bit dec value to output |
| 292 | */ |
| 293 | static inline void |
| 294 | bferror_d64(char const *const str, uint64_t const val) NOEXCEPT |
| 295 | { |
| 296 | printf("[BAREFLANK ERROR] %s: %" PRId64 "\n", str, val); |
| 297 | } |
| 298 | |
| 299 | /** |
| 300 | * <!-- description --> |
nothing calls this directly
no outgoing calls
no test coverage detected