* <!-- description --> * @brief Outputs a string to the console * * <!-- inputs/outputs --> * @param str the string to output */
| 179 | * @param str the string to output |
| 180 | */ |
| 181 | static inline void |
| 182 | bferror(char const *const str) NOEXCEPT |
| 183 | { |
| 184 | printf("[BAREFLANK ERROR] %s\n", str); |
| 185 | } |
| 186 | |
| 187 | /** |
| 188 | * <!-- description --> |
no outgoing calls
no test coverage detected