blob: 1d7c798569f7b1375652d41e8c8cac46e9083f68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//! String utilities
pub const cstring = @import("cstring.zig");
pub const location = @import("location.zig");
pub const builder = @import("builder.zig");
pub const len = cstring.len;
pub const toSlice = cstring.toSlice;
pub const findNull = cstring.findNull;
pub const getStackName = location.getStackName;
pub const parent = location.parent;
pub const build = builder.build;
pub const concat = builder.concat;
pub const concat3 = builder.concat3;
|