pkin/strff/strff_open.c
2026-09-04 19:59:24 +02:00

8 lines
152 B
C

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