summaryrefslogtreecommitdiff
path: root/src/couch/priv/couch_js/60/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/couch/priv/couch_js/60/util.h')
-rw-r--r--src/couch/priv/couch_js/60/util.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/couch/priv/couch_js/60/util.h b/src/couch/priv/couch_js/60/util.h
deleted file mode 100644
index 35882a614..000000000
--- a/src/couch/priv/couch_js/60/util.h
+++ /dev/null
@@ -1,38 +0,0 @@
-// Licensed under the Apache License, Version 2.0 (the "License"); you may not
-// use this file except in compliance with the License. You may obtain a copy of
-// the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-// License for the specific language governing permissions and limitations under
-// the License.
-
-#ifndef COUCHJS_UTIL_H
-#define COUCHJS_UTIL_H
-
-#include <jsapi.h>
-
-typedef struct {
- int eval;
- int stack_size;
- const char** scripts;
-} couch_args;
-
-std::string js_to_string(JSContext* cx, JS::HandleValue val);
-bool js_to_string(JSContext* cx, JS::HandleValue val, std::string& str);
-JSString* string_to_js(JSContext* cx, const std::string& s);
-
-couch_args* couch_parse_args(int argc, const char* argv[]);
-int couch_fgets(char* buf, int size, FILE* fp);
-JSString* couch_readline(JSContext* cx, FILE* fp);
-size_t couch_readfile(const char* file, char** outbuf_p);
-void couch_print(JSContext* cx, JS::HandleValue str, bool use_stderr);
-void couch_error(JSContext* cx, JSErrorReport* report);
-void couch_oom(JSContext* cx, void* data);
-bool couch_load_funcs(JSContext* cx, JS::HandleObject obj, JSFunctionSpec* funcs);
-
-
-#endif // Included util.h