* <!-- description --> * @brief Outputs a string and an 64bit hex to the console * * <!-- inputs/outputs --> * @param str the string to output * @param val the 64bit hex value to output */
| 235 | * @param val the 64bit hex value to output |
| 236 | */ |
| 237 | static inline void |
| 238 | bferror_x64(char const *const str, uint64_t const val) NOEXCEPT |
| 239 | { |
| 240 | printf("[BAREFLANK ERROR] %s: 0x%" PRIx64 "\n", str, val); |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * <!-- description --> |
nothing calls this directly
no outgoing calls
no test coverage detected