* <!-- 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 */
| 138 | * @param val the 32bit dec value to output |
| 139 | */ |
| 140 | static inline void |
| 141 | bfdebug_d32(char const *const str, uint32_t const val) NOEXCEPT |
| 142 | { |
| 143 | printf("[BAREFLANK DEBUG] %s: %" PRId32 "\n", str, val); |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * <!-- description --> |
nothing calls this directly
no outgoing calls
no test coverage detected