This commit is contained in:
Nishi 2026-05-23 10:23:33 +09:00
commit c16539ae02
79 changed files with 1802 additions and 1407 deletions

View file

@ -37,6 +37,8 @@ if($err){
die;
}
my @phon = ();
open(my $f, ">", "include/fishtalk_phon.h");
foreach my $l (@used){
print($f "extern signed char phon_$l\[];\n");
@ -86,7 +88,7 @@ foreach my $l (@used){
push(@arr, $hex);
}
print($f " " . join(", ", @arr) . ",\n");
print($f " " . join(", ", @arr) . ", /**/\n");
}
print($f "};\n");
print($f "unsigned int phon_$l\_length = $total;\n");