| 49 | } |
| 50 | |
| 51 | static constexpr auto strcpy(auto dst, auto src) noexcept { |
| 52 | using _impl_::idx; |
| 53 | return for_(idx = 0, true, ++idx)(dst[*idx] = *src[*idx], |
| 54 | if_(end(src[*idx]))(break_)); |
| 55 | } |
| 56 | |
| 57 | static constexpr auto puts(auto str) noexcept { |
| 58 | using _impl_::idx; |