]> git.saurik.com Git - apple/security.git/blobdiff - OSX/utilities/src/fileIo.h
Security-59306.11.20.tar.gz
[apple/security.git] / OSX / utilities / src / fileIo.h
diff --git a/OSX/utilities/src/fileIo.h b/OSX/utilities/src/fileIo.h
deleted file mode 100644 (file)
index 2e3bb29..0000000
+++ /dev/null
@@ -1,31 +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 readFileSizet(
-       const char                      *fileName,
-       unsigned char           **bytes,                // mallocd and returned
-       size_t              *numBytes);         // returned
-
-int writeFile(
-              const char                       *fileName,
-              const unsigned char      *bytes,
-              unsigned              numBytes);
-
-int writeFileSizet(
-       const char                      *fileName,
-       const unsigned char     *bytes,
-       size_t              numBytes);
-
-#ifdef __cplusplus
-}
-#endif