X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/20052ff75c224699725da0f8e096053009c62741..9d063d4a44915aa9a38c372b7113efe48f927924:/cycript.hpp diff --git a/cycript.hpp b/cycript.hpp index a70cd94..56ad5d1 100644 --- a/cycript.hpp +++ b/cycript.hpp @@ -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 {{{ */ @@ -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); - double CYCastDouble(const char *value, size_t size); double CYCastDouble(const char *value); @@ -54,4 +51,8 @@ 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); + +const char *CYPoolLibraryPath(CYPool &pool); + #endif/*CYCRIPT_HPP*/