* <!-- description --> * @brief Outputs a string and an 16bit dec to the console * * <!-- inputs/outputs --> * @param str the string to output * @param val the 16bit dec value to output */
| 263 | * @param val the 16bit dec value to output |
| 264 | */ |
| 265 | static inline void |
| 266 | bferror_d16(char const *const str, uint16_t const val) NOEXCEPT |
| 267 | { |
| 268 | printf("[BAREFLANK ERROR] %s: %" PRId32 "\n", str, (uint32_t)val); |
| 269 | } |
| 270 | |
| 271 | /** |
| 272 | * <!-- description --> |
nothing calls this directly
no outgoing calls
no test coverage detected