RosettaCodeData/Task/Use-another-language-to-call-a-function/Zig/use-another-language-to-call-a-function.zig

12 lines
247 B
Zig
Raw Permalink Normal View History

2025-02-27 18:35:13 -05:00
export fn Query(data: [*c]u8, length: *usize) callconv(.C) c_int {
2023-07-01 11:58:00 -04:00
const value = "Here I am";
2025-02-27 18:35:13 -05:00
if (length.* >= value.len) {
@memcpy(data[0..value.len], value);
length.* = value.len;
2023-07-01 11:58:00 -04:00
return 1;
}
return 0;
}