Subversion Repositories ipe_artfile_utils

Rev

Blame | Last modification | View Log | RSS feed

  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.  
  13.