first commit

This commit is contained in:
Eric 2025-05-26 00:06:22 +02:00
commit 9b1fe95a8e
7 changed files with 234 additions and 0 deletions

15
input.h Normal file
View file

@ -0,0 +1,15 @@
#ifndef HEADER_INPUT
#define HEADER_INPUT
#include <stdio.h>
extern unsigned char o[];
extern unsigned char s[];
unsigned char *
getocts(FILE *fp, int *np);
unsigned char *
getsxts(FILE *fp, int *np);
#endif