<!-- description --> @brief Output a character to stdout <!-- inputs/outputs --> @param c the character to output
| 51 | /// @param c the character to output |
| 52 | /// |
| 53 | constexpr void |
| 54 | stdio_out_char(bsl::char_type const c) noexcept |
| 55 | { |
| 56 | if (bsl::is_constant_evaluated()) { |
| 57 | return; |
| 58 | } |
| 59 | |
| 60 | mk::debug_ring_write(*g_pmut_mut_debug_ring, c); |
| 61 | mk::serial_write_c(c); |
| 62 | } |
| 63 | |
| 64 | /// <!-- description --> |
| 65 | /// @brief Output a string to stdout |
nothing calls this directly
no test coverage detected