* <!-- description --> * @brief Outputs a string to the console * * <!-- inputs/outputs --> * @param str the string to output */
| 40 | * @param str the string to output |
| 41 | */ |
| 42 | static inline void |
| 43 | bfdebug(char const *const str) NOEXCEPT |
| 44 | { |
| 45 | printf("[BAREFLANK DEBUG] %s\n", str); |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * <!-- description --> |
nothing calls this directly
no outgoing calls
no test coverage detected