mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-04-15 03:52:39 +00:00
15 lines
471 B
Zig
15 lines
471 B
Zig
//! SIMD-optimized routines. If `build_options.simd` is false, then the API
|
|
//! still works but we fall back to pure Zig scalar implementations.
|
|
|
|
const std = @import("std");
|
|
|
|
const codepoint_width = @import("codepoint_width.zig");
|
|
pub const base64 = @import("base64.zig");
|
|
pub const index_of = @import("index_of.zig");
|
|
pub const vt = @import("vt.zig");
|
|
pub const codepointWidth = codepoint_width.codepointWidth;
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
}
|