Compare commits

..

No commits in common. "dc054d7423c1ef27d2b8763ecc209d5bac8df98d" and "ad0a1654e2b7ed38a4a9c57cf637f9ae84cdfeef" have entirely different histories.

9 changed files with 0 additions and 47 deletions

View File

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

View File

@ -1,23 +0,0 @@
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

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

View File

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

View File

@ -1,16 +0,0 @@
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();
}