const std = @import("std"); const print = std.debug.print; export fn ipc_hello() callconv(.C) void { print("Hello!\n", .{}); } export fn ipc_bye() callconv(.C) void { print("Bye!\n", .{}); }