Compare commits

...

2 Commits

Author SHA1 Message Date
Tomasz Polgrabia dc054d7423 Renaming numbers zig. 2025-03-03 23:40:34 +01:00
Tomasz Polgrabia a7d53d7103 Adding zig calling c. 2025-03-03 23:39:44 +01:00
9 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,2 @@
.zig-cache
zig-out

View File

@ -0,0 +1,23 @@
const std = @import("std");
pub fn build(b: *std.Build) void {
const exe = b.addExecutable(.{
.name = "callingc",
.root_source_file = b.path("src/callingc.zig"),
.target = b.host,
.optimize = b.standardOptimizeOption(.{}),
});
exe.addIncludePath(b.path("c-src"));
exe.addCSourceFile(.{ .file = b.path("c-src/callingc.c") });
b.installArtifact(exe);
const run_cmd = b.addRunArtifact(exe);
run_cmd.step.dependOn(b.getInstallStep());
if (b.args) |args| {
run_cmd.addArgs(args);
}
const run_step = b.step("run", "run the app");
run_step.dependOn(&run_cmd.step);
}

View File

@ -0,0 +1,5 @@
#include "callingc.h"
int add_numbers(int a, int b) {
return 2*a+b;
}

View File

@ -0,0 +1 @@
int add_numbers(int a, int b);

View File

@ -0,0 +1,16 @@
const std = @import("std");
const callingc = @cImport({
@cInclude("callingc.h");
});
pub fn main() !void {
const stdout_file = std.io.getStdOut().writer();
var bw = std.io.bufferedWriter(stdout_file);
const stdout = bw.writer();
const c = callingc.add_numbers(3, 4);
try stdout.print("Hello World {d}!!\n", .{c});
try bw.flush();
}