* <!-- 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 */
| 96 | * @param val the 64bit hex value to output |
| 97 | */ |
| 98 | static inline void |
| 99 | bfdebug_x64(char const *const str, uint64_t const val) NOEXCEPT |
| 100 | { |
| 101 | printf("[BAREFLANK DEBUG] %s: 0x%" PRIx64 "\n", str, val); |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * <!-- description --> |
nothing calls this directly
no outgoing calls
no test coverage detected