17 #ifndef POSIX_FILE_UTILS_H_ 
   18 #define POSIX_FILE_UTILS_H_ 
   27 int posix_binary_file_read(
const char *file_name, 
char **buffer, 
size_t *buffer_size, 
bool *needs_deallocation);
 
int posix_binary_file_store(const char *file_name, const char *buffer, size_t buffer_size)
 
int posix_binary_file_delete(const char *file_name)
 
int posix_binary_file_read(const char *file_name, char **buffer, size_t *buffer_size, bool *needs_deallocation)