blob: bfc660b13d0b674a6867d352b7322a4b9ac90b35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <m_string.h>
#include <pagecache.h>
/*
File content descriptor
*/
struct file_desc
{
unsigned int length;
unsigned char content;
};
int test_file(PAGECACHE_FILE file, char *file_name,
off_t size, size_t buff_size, struct file_desc *desc);
|