Compare commits

..

No commits in common. "1a55433a2fb9143c6dfd16221294a961f5c78e11" and "4a9d20f1eea5747855335984bb921bbeb9b05c07" have entirely different histories.

4 changed files with 5 additions and 38 deletions

5
.gitignore vendored
View File

@ -1,8 +1,5 @@
output-vagrant output-vagrant
*~ *~
*.old
*.old.*
*.bak
.git .git
.vagrant .vagrant
.secret .secret
@ -10,4 +7,4 @@ output-vagrant
.idea .idea
# test # test
.gradle .gradle
build build

View File

@ -26,10 +26,10 @@ func main() {
return return
} }
for _, dir := range dirs { for i := 0; i < len(dirs); i++ {
m := make(map[string]string) m := make(map[string]string)
m["name"] = dir.Name() m["name"] = dirs[i].Name()
if dir.IsDir() { if dirs[i].IsDir() {
m["dir"] = "yes" m["dir"] = "yes"
} else { } else {
m["dir"] = "no" m["dir"] = "no"

View File

@ -4,7 +4,7 @@ pub fn build(b: *std.Build) void {
const exe = b.addExecutable(.{ const exe = b.addExecutable(.{
.name = "callingc", .name = "callingc",
.root_source_file = b.path("src/callingc.zig"), .root_source_file = b.path("src/callingc.zig"),
.target = b.graph.host, .target = b.host,
.optimize = b.standardOptimizeOption(.{}), .optimize = b.standardOptimizeOption(.{}),
}); });
exe.addIncludePath(b.path("c-src")); exe.addIncludePath(b.path("c-src"));

View File

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