Port widecharwidth

This commit is contained in:
Johannes Altmanninger 2023-04-08 18:26:45 +02:00
parent 8bbf663dee
commit 1426d1bcb0
4 changed files with 1665 additions and 0 deletions

View file

@ -53,6 +53,7 @@ mod wchar_ext;
mod wchar_ffi;
mod wcstringutil;
mod wgetopt;
mod widecharwidth;
mod wildcard;
mod wutil;

View file

@ -0,0 +1,4 @@
widecharwidth - wcwidth implementation
Written in 2018 by ridiculous_fish
To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.

View file

@ -0,0 +1,6 @@
#![allow(warnings, clippy::all)]
#[rustfmt::skip]
mod widechar_width;
pub use widechar_width::*;

File diff suppressed because it is too large Load diff