Subversion Repositories ipe_artfile_utils

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
#ifndef __inc__utils
2
#define __inc__utils
3
 
4
#include <stdio.h>
5
 
6
size_t file_size(FILE* fp);
7
char* sanitize_filename(char* picname);
8
void* app_zero_alloc(long bytes);
9
unsigned char read_byte(FILE *file);
10
 
11
#endif // #ifndef __inc__utils
12