summaryrefslogtreecommitdiff
path: root/internal/proc.h
diff options
context:
space:
mode:
Diffstat (limited to 'internal/proc.h')
-rw-r--r--internal/proc.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/internal/proc.h b/internal/proc.h
new file mode 100644
index 0000000000..2831afc95c
--- /dev/null
+++ b/internal/proc.h
@@ -0,0 +1,24 @@
+#ifndef INTERNAL_PROC_H /* -*- C -*- */
+#define INTERNAL_PROC_H
+/**
+ * @file
+ * @brief Internal header for Proc.
+ * @author \@shyouhei
+ * @copyright This file is a part of the programming language Ruby.
+ * Permission is hereby granted, to either redistribute and/or
+ * modify this file, provided that the conditions mentioned in the
+ * file COPYING are met. Consult the file for details.
+ */
+
+struct rb_block;
+
+/* proc.c */
+VALUE rb_proc_location(VALUE self);
+st_index_t rb_hash_proc(st_index_t hash, VALUE proc);
+int rb_block_arity(void);
+int rb_block_min_max_arity(int *max);
+VALUE rb_func_proc_new(rb_block_call_func_t func, VALUE val);
+VALUE rb_func_lambda_new(rb_block_call_func_t func, VALUE val, int min_argc, int max_argc);
+VALUE rb_block_to_s(VALUE self, const struct rb_block *block, const char *additional_info);
+
+#endif /* INTERNAL_PROC_H */