blob: f8834981a05a7cacb3c8ad63b674fef5b7206c8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <al/str.h>
#include "../handler.h"
#include "../entry.h"
struct cch_handler_file {
struct cch_handler handler;
struct cch_backing *backing;
};
struct cch_entry *cch_handler_file_create(str *path, str *handler);
|