summaryrefslogtreecommitdiff
path: root/jni/ruby/ext/psych/psych.h
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/ext/psych/psych.h
Fresh start
Diffstat (limited to 'jni/ruby/ext/psych/psych.h')
-rw-r--r--jni/ruby/ext/psych/psych.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/jni/ruby/ext/psych/psych.h b/jni/ruby/ext/psych/psych.h
new file mode 100644
index 0000000..1830ca4
--- /dev/null
+++ b/jni/ruby/ext/psych/psych.h
@@ -0,0 +1,20 @@
+#ifndef PSYCH_H
+#define PSYCH_H
+
+#include <ruby.h>
+
+#ifdef HAVE_RUBY_ENCODING_H
+#include <ruby/encoding.h>
+#endif
+
+#include <yaml.h>
+
+#include <psych_parser.h>
+#include <psych_emitter.h>
+#include <psych_to_ruby.h>
+#include <psych_yaml_tree.h>
+
+extern VALUE mPsych;
+
+
+#endif