From 1a55433a2fb9143c6dfd16221294a961f5c78e11 Mon Sep 17 00:00:00 2001 From: Tomasz Polgrabia Date: Tue, 11 Mar 2025 10:10:26 +0100 Subject: [PATCH] Zig meta proposed on matrix channel not working. --- current/algorithms/callingc_zig/meta.patch | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 current/algorithms/callingc_zig/meta.patch diff --git a/current/algorithms/callingc_zig/meta.patch b/current/algorithms/callingc_zig/meta.patch new file mode 100644 index 0000000..400aaba --- /dev/null +++ b/current/algorithms/callingc_zig/meta.patch @@ -0,0 +1,30 @@ +diff --git a/current/algorithms/callingc_zig/src/callingc.zig b/current/algorithms/callingc_zig/src/callingc.zig +index 0619cef..14ed5ff 100644 +--- a/current/algorithms/callingc_zig/src/callingc.zig ++++ b/current/algorithms/callingc_zig/src/callingc.zig +@@ -4,6 +4,15 @@ const callingc = @cImport({ + @cInclude("callingc.h"); + }); + ++const ErrorType = struct { name: []const u8, line: u32, pos: u32 }; ++ ++pub fn dump_error_type(w: anytype) !void { ++ for (@typeInfo(ErrorType).@"struct".fields) |field| { ++ try w.print("Field name \n" ++ field.name); ++ } ++ try w.print("Started dumping error\n", .{}); ++} ++ + pub fn main() !void { + const stdout_file = std.io.getStdOut().writer(); + var bw = std.io.bufferedWriter(stdout_file); +@@ -12,5 +21,9 @@ pub fn main() !void { + const c = callingc.add_numbers(3, 4); + + try stdout.print("Hello World {d}!!\n", .{c}); ++ // const ename = "Ala"; ++ // const err: ErrorType = .{ .name = ename, .line = 123, .pos = 43 }; ++ // dump_error(stdout, err); ++ try dump_error_type(stdout); + try bw.flush(); + }