* @brief Print a string to stderr. */
| 104 | * @brief Print a string to stderr. |
| 105 | */ |
| 106 | static inline void print_error( |
| 107 | const char* format |
| 108 | ) { |
| 109 | fprintf(stderr, "%s", format); |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * @brief Print a formatted string to stderr. |
nothing calls this directly
no outgoing calls
no test coverage detected