github publish

This commit is contained in:
Ondrej Novak 2025-01-24 18:27:22 +01:00
commit 506e23bf32
542 changed files with 120675 additions and 0 deletions

31
LIBS/EXPAND.C Normal file
View file

@ -0,0 +1,31 @@
#include <stdio.h>
#include <stdlib.h>
#include <mem.h>
#include "memman.h"
void help()
{
puts("Usage: Extract skeldal.ddl source.ext target.ext");
exit(1);
}
main(int argc,char **argv)
{
void *z;long s;
FILE *f;
if (argc!=4) help();
OPEN_LOG("");
init_manager(argv[1],NULL);
z=afile(argv[2],read_group(0),&s);
if (z==NULL)
{
puts("File not found");
return 1;
}
f=fopen(argv[3],"w");
fwrite(z,1,s,f);
fclose(f);
puts("File successfuly expanded");
return 0;
}