Compare commits
2 Commits
ad0a1654e2
...
dc054d7423
Author | SHA1 | Date |
---|---|---|
|
dc054d7423 | |
|
a7d53d7103 |
|
@ -0,0 +1,2 @@
|
|||
.zig-cache
|
||||
zig-out
|
|
@ -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);
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
#include "callingc.h"
|
||||
|
||||
int add_numbers(int a, int b) {
|
||||
return 2*a+b;
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
int add_numbers(int a, int b);
|
|
@ -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();
|
||||
}
|
Loading…
Reference in New Issue