l4re-base-25.08.0

This commit is contained in:
2025-09-12 15:55:45 +02:00
commit d959eaab98
37938 changed files with 9382688 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
This is a small tool that generates C code from a list
of plain DOpE commands. The resulting C code is meant
to be included in a C file. The recommended extension
of DOpE command files is '.dpe'. The recommended
extension for the resulting C include files is '.i'.

View File

@@ -0,0 +1,12 @@
#! /usr/bin/perl -w
use strict;
while (<>) {
chomp;
next if /^\s*#/;
next if /^\s*$/;
s/"/\\"/g;
s/^\s*(.+?)\s*$/$1/;
print " dope_cmd(\"$_\");\n";
}