summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2013-09-26 22:42:53 +0200
committerGravatar Martin Szulecki2013-09-26 22:42:53 +0200
commit5877a05844fc3bd224dec206c54fe6633c671455 (patch)
treea697209ee629f10d1c28b41cacfda9fb85fe528f
parent871ffcdcf06692fd306c8f63cd7796277c2b3d27 (diff)
downloadlibirecovery-5877a05844fc3bd224dec206c54fe6633c671455.tar.gz
libirecovery-5877a05844fc3bd224dec206c54fe6633c671455.tar.bz2
Remove irecv_read|write_file() which are obsolete now
-rw-r--r--src/libirecovery.c64
1 files changed, 0 insertions, 64 deletions
diff --git a/src/libirecovery.c b/src/libirecovery.c
index 87ec520..f51ca3d 100644
--- a/src/libirecovery.c
+++ b/src/libirecovery.c
@@ -48,8 +48,6 @@ static int libirecovery_debug = 0;
static libusb_context* libirecovery_context = NULL;
#endif
-int irecv_write_file(const char* filename, const void* data, size_t size);
-int irecv_read_file(const char* filename, char** data, uint32_t* size);
static unsigned int dfu_hash_t1[256] = {
0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA,
@@ -1369,68 +1367,6 @@ const char* irecv_strerror(irecv_error_t error) {
return NULL;
}
-int irecv_write_file(const char* filename, const void* data, size_t size) {
- size_t bytes = 0;
- FILE* file = NULL;
-
- debug("Writing data to %s\n", filename);
- file = fopen(filename, "wb");
- if (file == NULL) {
- //error("read_file: Unable to open file %s\n", filename);
- return -1;
- }
-
- bytes = fwrite(data, 1, size, file);
- fclose(file);
-
- if (bytes != size) {
- //error("ERROR: Unable to write entire file: %s: %d of %d\n", filename, bytes, size);
- return -1;
- }
-
- return size;
-}
-
-int irecv_read_file(const char* filename, char** data, uint32_t* size) {
- size_t bytes = 0;
- size_t length = 0;
- FILE* file = NULL;
- char* buffer = NULL;
- debug("Reading data from %s\n", filename);
-
- *size = 0;
- *data = NULL;
-
- file = fopen(filename, "rb");
- if (file == NULL) {
- //error("read_file: File %s not found\n", filename);
- return -1;
- }
-
- fseek(file, 0, SEEK_END);
- length = ftell(file);
- rewind(file);
-
- buffer = (char*) malloc(length);
- if(buffer == NULL) {
- //error("ERROR: Out of memory\n");
- fclose(file);
- return -1;
- }
- bytes = fread(buffer, 1, length, file);
- fclose(file);
-
- if(bytes != length) {
- //error("ERROR: Unable to read entire file\n");
- free(buffer);
- return -1;
- }
-
- *size = length;
- *data = buffer;
- return 0;
-}
-
irecv_error_t irecv_reset_counters(irecv_client_t client) {
if (check_context(client) != IRECV_E_SUCCESS) return IRECV_E_NO_DEVICE;
if ((client->mode == kDfuMode) || (client->mode == kWTFMode)) {