ZJIT: Enable a couple more btests (#13748)
[ruby.git] / internal / enum.h
blob282464436f8c845d598bb397099f38f6cafb7e96
1 #ifndef INTERNAL_ENUM_H /*-*-C-*-vi:se ft=c:*/
2 #define INTERNAL_ENUM_H
3 /**
4 * @author Ruby developers <ruby-core@ruby-lang.org>
5 * @copyright This file is a part of the programming language Ruby.
6 * Permission is hereby granted, to either redistribute and/or
7 * modify this file, provided that the conditions mentioned in the
8 * file COPYING are met. Consult the file for details.
9 * @brief Internal header for Enumerable.
11 #include "ruby/ruby.h" /* for VALUE */
13 /* enum.c */
14 extern VALUE rb_cArithSeq;
15 VALUE rb_f_send(int argc, VALUE *argv, VALUE recv);
16 VALUE rb_nmin_run(VALUE obj, VALUE num, int by, int rev, int ary);
18 #endif /* INTERNAL_ENUM_H */