aboutsummaryrefslogtreecommitdiff
path: root/std/cstr.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-05-26 13:17:34 -0400
committerAndrew Kelley <andrew@ziglang.org>2019-05-26 18:32:44 -0400
commit2f040a23c8b968db56ab4c4725d6651f5ea3418e (patch)
tree58727a1c2ffdf356db2f5c01e84940e4ced0541f /std/cstr.zig
parent7cb6279ac0cec065234347bda5944be64fe8b3da (diff)
downloadzig-2f040a23c8b968db56ab4c4725d6651f5ea3418e.tar.gz
zig-2f040a23c8b968db56ab4c4725d6651f5ea3418e.zip
clean up references to os
Diffstat (limited to 'std/cstr.zig')
-rw-r--r--std/cstr.zig15
1 files changed, 0 insertions, 15 deletions
diff --git a/std/cstr.zig b/std/cstr.zig
index 49d6373732..c8c3447921 100644
--- a/std/cstr.zig
+++ b/std/cstr.zig
@@ -9,11 +9,6 @@ pub const line_sep = switch (builtin.os) {
else => "\n",
};
-/// Deprecated, use mem.len
-pub fn len(ptr: [*]const u8) usize {
- return mem.len(u8, ptr);
-}
-
pub fn cmp(a: [*]const u8, b: [*]const u8) i8 {
var index: usize = 0;
while (a[index] == b[index] and a[index] != 0) : (index += 1) {}
@@ -26,16 +21,6 @@ pub fn cmp(a: [*]const u8, b: [*]const u8) i8 {
}
}
-/// Deprecated, use mem.toSliceConst
-pub fn toSliceConst(str: [*]const u8) []const u8 {
- return mem.toSliceConst(u8, str);
-}
-
-/// Deprecated, use mem.toSlice
-pub fn toSlice(str: [*]u8) []u8 {
- return mem.toSlice(u8, str);
-}
-
test "cstr fns" {
comptime testCStrFnsImpl();
testCStrFnsImpl();