]> git.saurik.com Git - apple/security.git/blobdiff - libsecurity_transform/lib/misc.h
Security-55163.44.tar.gz
[apple/security.git] / libsecurity_transform / lib / misc.h
diff --git a/libsecurity_transform/lib/misc.h b/libsecurity_transform/lib/misc.h
new file mode 100644 (file)
index 0000000..5bee0f8
--- /dev/null
@@ -0,0 +1,36 @@
+/*
+ *  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