mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
68bf81432c
upstream commit 5f5a050569a95ecc40a426f0c3666ae7ef987ede
20 lines
480 B
Zig
Vendored
20 lines
480 B
Zig
Vendored
const std = @import("std");
|
|
const Allocator = std.mem.Allocator;
|
|
|
|
data: []const u8,
|
|
text: []const u8,
|
|
|
|
const Assembly = @This();
|
|
|
|
pub fn deinit(self: *const Assembly, gpa: Allocator) void {
|
|
gpa.free(self.data);
|
|
gpa.free(self.text);
|
|
}
|
|
|
|
pub fn writeToFile(self: Assembly, io: std.Io, file: std.Io.File) !void {
|
|
var file_writer = file.writer(io, &.{});
|
|
|
|
var buffers = [_][]const u8{ self.data, self.text };
|
|
try file_writer.interface.writeSplatAll(&buffers, 1);
|
|
}
|