This commit is contained in:
kento2 2026-09-04 19:59:24 +02:00
commit 55385f8857
69 changed files with 1125 additions and 0 deletions

8
strff/strff_open.c Normal file
View file

@ -0,0 +1,8 @@
#include "../strff.h"
#include <libowfat/byte.h>
void strff_open(struct strff *strff, int fd)
{
byte_zero(strff, sizeof *strff);
strff->fd = fd;
}