]> git.saurik.com Git - cycript.git/blobdiff - cycript.hpp
Instance's toPointer() should return as CFTypeRef.
[cycript.git] / cycript.hpp
index 0f6ed1354192be1cac5b2320a0dd872d87db3664..44958f86d7bde1ee7d1c2ca72ca3e04ca86568c4 100644 (file)
@@ -1,5 +1,5 @@
-/* Cycript - Optimizing JavaScript Compiler/Runtime
- * Copyright (C) 2009-2015  Jay Freeman (saurik)
+/* Cycript - The Truly Universal Scripting Language
+ * Copyright (C) 2009-2016  Jay Freeman (saurik)
 */
 
 /* GNU Affero General Public License, Version 3 {{{ */
 #ifndef CYCRIPT_HPP
 #define CYCRIPT_HPP
 
-#include <sig/types.hpp>
 #include <sstream>
 
+#include <sig/types.hpp>
+
 #include "Pooling.hpp"
 #include "String.hpp"
 
 bool CYRecvAll_(int socket, uint8_t *data, size_t size);
 bool CYSendAll_(int socket, const uint8_t *data, size_t size);
 
-void CYNumerify(std::ostringstream &str, double value);
-void CYStringify(std::ostringstream &str, const char *data, size_t size);
-
 double CYCastDouble(const char *value, size_t size);
 double CYCastDouble(const char *value);
 
@@ -53,4 +51,6 @@ CYPool &CYGetGlobalPool();
 
 char **CYComplete(const char *word, const std::string &line, CYUTF8String (*run)(CYPool &pool, const std::string &));
 
+const char *CYPoolLibraryPath(CYPool &pool);
+
 #endif/*CYCRIPT_HPP*/