macos/foundation: more string funcs

This commit is contained in:
Mitchell Hashimoto
2022-10-01 10:32:54 -07:00
parent 2440b0ec67
commit 92d564a246
3 changed files with 39 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
pub const ComparisonResult = enum(c_int) {
less = -1,
equal = 0,
greater = 1,
};