* <!-- description --> * @brief Outputs a string and an pointer to the console * * <!-- inputs/outputs --> * @param str the string to output * @param p the pointer value to output */
| 305 | * @param p the pointer value to output |
| 306 | */ |
| 307 | static inline void |
| 308 | bferror_ptr(char const *const str, void const *const p) NOEXCEPT |
| 309 | { |
| 310 | printf("[BAREFLANK ERROR] %s: 0x%p\n", str, p); |
| 311 | } |
| 312 | |
| 313 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected