Files
website/doc/inc/file.h
2025-05-22 20:12:05 +03:00

11 lines
172 B
C

#pragma once
#include <stdint.h>
typedef struct {
char *content;
int64_t size;
} file_t;
file_t *file_load(int dirfd, char *path);
void file_free(file_t *file);