We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef3a503 commit 1aadae3Copy full SHA for 1aadae3
src/uu/sort/src/sort.rs
@@ -122,6 +122,10 @@ fn locale_decimal_pt() -> u8 {
122
const NEGATIVE: &u8 = &b'-';
123
const POSITIVE: &u8 = &b'+';
124
125
+// Non-breaking space constants
126
+const UTF8_NBSP: &[u8] = &[0xc2, 0xa0]; // UTF-8 encoding of non-breaking space (U+00A0)
127
+const ISO_NBSP: u8 = 0xa0; // ISO 8859-1 non-breaking space
128
+
129
// SI unit constants for byte parsing
130
const KILO: usize = 1024;
131
const MEGA: usize = 1024 * 1024;
0 commit comments