]> git.saurik.com Git - apple/security.git/blobdiff - Security/utilities/src/fileIo.h
Security-57336.1.9.tar.gz
[apple/security.git] / Security / utilities / src / fileIo.h
diff --git a/Security/utilities/src/fileIo.h b/Security/utilities/src/fileIo.h
deleted file mode 100644 (file)
index d12413f..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Copyright (c) 2005-2007,2010,2012 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