* <!-- 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 */
| 152 | * @param val the 64bit dec value to output |
| 153 | */ |
| 154 | static inline void |
| 155 | bfdebug_d64(char const *const str, uint64_t const val) NOEXCEPT |
| 156 | { |
| 157 | printf("[BAREFLANK DEBUG] %s: %" PRId64 "\n", str, val); |
| 158 | } |
| 159 | |
| 160 | /** |
| 161 | * <!-- description --> |
nothing calls this directly
no outgoing calls
no test coverage detected