]> git.saurik.com Git - cycript.git/blobdiff - cycript.hpp
Implement synchronous lstat: node.js binding demo.
[cycript.git] / cycript.hpp
index 30010f4e447503fae14882b61e9c477827d5690f..af9bd44d686bef87b0bd0e49b8c7a9a556220fbb 100644 (file)
@@ -32,9 +32,6 @@
 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, bool c = false);
-
 double CYCastDouble(const char *value, size_t size);
 double CYCastDouble(const char *value);
 
@@ -54,4 +51,6 @@ CYPool &CYGetGlobalPool();
 
 char **CYComplete(const char *word, const std::string &line, CYUTF8String (*run)(CYPool &pool, const std::string &));
 
+void CYStringify(std::ostringstream &str, const char *data, size_t size, bool c);
+
 #endif/*CYCRIPT_HPP*/