1const std = @import("std");
2const common = @import("./_common.zig");
3
4pub usingnamespace common.Main(struct {
5 pub const source_file = "LineBreak";
6
7 pub const dest_file = "src/line_break.zig";
8
9 pub const dest_header =
10 \\const ucd = @import("./lib.zig");
11 \\
12 \\pub const LineBreak = struct {
13 \\ from: u21,
14 \\ to: u21,
15 \\ category: ucd.LineBreak,
16 \\};
17 \\
18 \\pub const data = [_]LineBreak{
19 \\
20 ;
21
22 pub const dest_footer =
23 \\};
24 \\
25 ;
26
27 pub usingnamespace common.RangeEnum("category");
28});