* <!-- description --> * @brief Outputs a string and an 32bit hex to the console * * <!-- inputs/outputs --> * @param str the string to output * @param val the 32bit hex value to output */
| 221 | * @param val the 32bit hex value to output |
| 222 | */ |
| 223 | static inline void |
| 224 | bferror_x32(char const *const str, uint32_t const val) NOEXCEPT |
| 225 | { |
| 226 | printf("[BAREFLANK ERROR] %s: 0x%" PRIx32 "\n", str, val); |
| 227 | } |
| 228 | |
| 229 | /** |
| 230 | * <!-- description --> |
nothing calls this directly
no outgoing calls
no test coverage detected