a modern tui library written in zig
17
fork

Configure Feed

Select the types of activity you want to include in your feed.

unicode: remove unused functions

rockorager.dev cc88b3d3 3fde9f2f

verified
-17
-17
src/Unicode.zig
··· 1 1 const std = @import("std"); 2 2 const uucode = @import("uucode"); 3 3 4 - /// A thin wrapper around Unicode data - no longer needs allocation with uucode 5 - const Unicode = @This(); 6 - 7 - /// initialize all unicode data vaxis may possibly need 8 - /// With uucode, no initialization is needed but we keep this for API compatibility 9 - pub fn init(alloc: std.mem.Allocator) !Unicode { 10 - _ = alloc; 11 - return .{}; 12 - } 13 - 14 - /// free all data 15 - /// With uucode, no deinitialization is needed but we keep this for API compatibility 16 - pub fn deinit(self: *const Unicode, alloc: std.mem.Allocator) void { 17 - _ = self; 18 - _ = alloc; 19 - } 20 - 21 4 // Old API-compatible Grapheme value 22 5 pub const Grapheme = struct { 23 6 start: usize,