]> git.saurik.com Git - apple/security.git/blobdiff - security_utilities/fileIo.h
Security-55471.tar.gz
[apple/security.git] / security_utilities / fileIo.h
diff --git a/security_utilities/fileIo.h b/security_utilities/fileIo.h
deleted file mode 100644 (file)
index e6470c1..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Copyright (c) 2005-2007,2010 Apple Inc. All Rights Reserved.
- */
-
-#include <sys/types.h>
-
-/*
- * 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