X-Git-Url: https://git.saurik.com/apple/security.git/blobdiff_plain/c38e3ce98599a410a47dc10253faa4d5830f13b2..427c49bcad63d042b29ada2ac27e3dfc4845c779:/security_utilities/fileIo.h diff --git a/security_utilities/fileIo.h b/security_utilities/fileIo.h deleted file mode 100644 index e6470c12..00000000 --- a/security_utilities/fileIo.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) 2005-2007,2010 Apple Inc. All Rights Reserved. - */ - -#include - -/* - * Read entire file. - */ -#ifdef __cplusplus -extern "C" { -#endif - -int readFile( - const char *fileName, - unsigned char **bytes, // mallocd and returned - size_t *numBytes); // returned - -int writeFile( - const char *fileName, - const unsigned char *bytes, - size_t numBytes); - -#ifdef __cplusplus -} -#endif