From e91b325d9d4ba242ff32f37f0bb118e2110055fc Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 30 Jan 2016 02:20:00 +0100 Subject: [PATCH] Remove no longer used write_file --- file_ops.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/file_ops.h b/file_ops.h index a62ba2eb71..7e15001044 100644 --- a/file_ops.h +++ b/file_ops.h @@ -50,18 +50,6 @@ int read_compressed_file(const char * path, void **buf, */ int read_file(const char *path, void **buf, ssize_t *length); -/** - * write_file: - * @path : path to file. - * @data : contents to write to the file. - * @size : size of the contents. - * - * Writes data to a file. - * - * Returns: true (1) on success, false (0) otherwise. - */ -bool write_file(const char *path, const void *buf, ssize_t size); - #ifdef __cplusplus } #endif