]> git.saurik.com Git - apple/security.git/blobdiff - OSX/libsecurity_keychain/libDER/libDERUtils/fileIo.h
Security-58286.31.2.tar.gz
[apple/security.git] / OSX / libsecurity_keychain / libDER / libDERUtils / fileIo.h
diff --git a/OSX/libsecurity_keychain/libDER/libDERUtils/fileIo.h b/OSX/libsecurity_keychain/libDER/libDERUtils/fileIo.h
deleted file mode 100644 (file)
index 26e31f7..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (c) 2005-2007,2010-2011 Apple Inc. All Rights Reserved.
- */
-
-#ifndef        _DER_FILE_IO_H_
-#define _DER_FILE_IO_H_
-
-/*
- * Read entire file. 
- */
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-int readFile(
-       const char                      *fileName,
-       unsigned char           **bytes,                // mallocd and returned
-       unsigned                        *numBytes);             // returned
-
-int writeFile(
-       const char                      *fileName,
-       const unsigned char     *bytes,
-       unsigned                        numBytes);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* _DER_FILE_IO_H_ */