]> git.saurik.com Git - apple/security.git/blobdiff - libsecurity_transform/lib/misc.h
Security-57031.1.35.tar.gz
[apple/security.git] / libsecurity_transform / lib / misc.h
diff --git a/libsecurity_transform/lib/misc.h b/libsecurity_transform/lib/misc.h
deleted file mode 100644 (file)
index 5bee0f8..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- *  misc.h
- *  libsecurity_transform
- *
- *  Created by JOsborne on 3/19/10.
- *  Copyright 2010 Apple. All rights reserved.
- *
- */
-
-#ifndef __INCLUDED_TRANSFORMS_MISC_H__
-#define __INCLUDED_TRANSFORMS_MISC_H__
-
-#include <stdio.h>
-#include "SecTransform.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-       
-       
-       CFErrorRef fancy_error(CFStringRef domain, CFIndex code, CFStringRef description);
-       extern void graphviz(FILE *f, SecTransformRef tr);
-       extern void CFfprintf(FILE *f, const char *format, ...);
-       CFErrorRef GetNoMemoryError();
-       CFErrorRef GetNoMemoryErrorAndRetain();
-       void CFSafeRelease(CFTypeRef object);
-    
-    // NOTE: the return may or allocate a fair bit more space then it needs.
-    // Use it for short lived conversions (or strdup the result).
-    extern char *utf8(CFStringRef s);
-
-#ifdef __cplusplus
-}
-#endif
-               
-#endif