We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07cd25a commit f6f35ddCopy full SHA for f6f35dd
1 file changed
ffi/zig/src/main.zig
@@ -88,14 +88,6 @@ export fn proven_version_patch() u32 { return 0; }
88
/// Return the FFI ABI version
89
export fn proven_ffi_abi_version() u32 { return 1; }
90
91
-/// Free a string allocated by the library
92
-export fn proven_free_string(ptr: ?[*]const u8) void {
93
- const p = ptr orelse return;
94
- // Find the null terminator to determine length for the allocator
95
- const len = std.mem.len(p);
96
- std.heap.c_allocator.free(p[0..len + 1]);
97
-}
98
-
99
//==============================================================================
100
// Core Operations
101
0 commit comments