You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
509 B
Zig
25 lines
509 B
Zig
const std = @import("std");
|
|
|
|
const Header = struct {
|
|
magic: u32,
|
|
name: []const u8,
|
|
};
|
|
|
|
pub fn main() void {
|
|
printInfoAboutStruct(Header);
|
|
}
|
|
|
|
fn printInfoAboutStruct(comptime T: type) void {
|
|
const info = @typeInfo(T);
|
|
inline for (info.Struct.fields) |field| {
|
|
std.debug.print(
|
|
"{} has field called {} with type {}\n",
|
|
.{
|
|
@typeName(T),
|
|
field.name,
|
|
@typeName(field.field_type),
|
|
},
|
|
);
|
|
}
|
|
}
|