* <!-- description --> * @brief Outputs a string and an pointer to the console * * <!-- inputs/outputs --> * @param str the string to output * @param p the pointer to output */
| 166 | * @param p the pointer to output |
| 167 | */ |
| 168 | static inline void |
| 169 | bfdebug_ptr(char const *const str, void const *const p) NOEXCEPT |
| 170 | { |
| 171 | printf("[BAREFLANK DEBUG] %s: 0x%p\n", str, p); |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * <!-- description --> |
nothing calls this directly
no outgoing calls
no test coverage detected