8 lines
152 B
C
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;
|
|
}
|