diff options
| author | Irene Knapp <ireneista@irenes.space> | 2026-03-27 03:42:32 -0700 |
|---|---|---|
| committer | Irene Knapp <ireneista@irenes.space> | 2026-03-27 03:42:32 -0700 |
| commit | 10327d770eb19764d1e272d2f32a4f0e3edd9062 (patch) | |
| tree | cc70187f69116b4fb48aef1569e3dece2b05027a /src/types.rs | |
| parent | 4997c2a4e4856b49668a3d1257e967597c7dfb92 (diff) | |
add a loop that reads a character of user input
(right now it exits after the first time, doing nothing) Force-Push: yes Change-Id: I89f8d3d298e6a42e373e536121e6b434e30ef66f
Diffstat (limited to 'src/types.rs')
| -rw-r--r-- | src/types.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/types.rs b/src/types.rs index ef45492..1f74216 100644 --- a/src/types.rs +++ b/src/types.rs @@ -1,4 +1,5 @@ #![forbid(unsafe_code)] +pub use crate::encoding::UTF8ByteType; pub use crate::terminal::Terminal; pub type Error = std::io::Error; |