feat: add some braile spinners to unicode.zig

Might be useful somewhere...
This commit is contained in:
CJ van den Berg 2025-10-07 20:56:55 +02:00
parent e5c89ea754
commit 5cfe2f6be4
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -81,3 +81,24 @@ pub fn get_letter_casing() *LetterCasing {
letter_casing = LetterCasing.init(letter_casing_arena.allocator()) catch @panic("LetterCasing.init"); letter_casing = LetterCasing.init(letter_casing_arena.allocator()) catch @panic("LetterCasing.init");
return &letter_casing.?; return &letter_casing.?;
} }
const spinner = [_][]const u8{
"",
"",
"",
"",
"",
"",
"",
"",
"",
};
const spinner_short = [_][]const u8{
"",
"",
"",
"",
"",
"",
};