* <!-- description --> * @brief Outputs a string and an 32bit dec to the console * * <!-- inputs/outputs --> * @param str the string to output * @param val the 32bit dec value to output */
| 277 | * @param val the 32bit dec value to output |
| 278 | */ |
| 279 | static inline void |
| 280 | bferror_d32(char const *const str, uint32_t const val) NOEXCEPT |
| 281 | { |
| 282 | printf("[BAREFLANK ERROR] %s: %" PRId32 "\n", str, val); |
| 283 | } |
| 284 | |
| 285 | /** |
| 286 | * <!-- description --> |
nothing calls this directly
no outgoing calls
no test coverage detected