blob: bd636517df72391d7cb5b2c073e0e73820237ce8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#include <limits.h>
#include <mruby.h>
static inline mrb_int
to_int(mrb_value x)
{
double f;
if (mrb_fixnum_p(x)) return mrb_fixnum(x);
f = mrb_float(x);
return (mrb_int)f;
}
/*
* Document-method: Integer#chr
* call-seq:
* int.chr -> string
*
* Returns a string containing the character represented by the +int+'s value
* according to +encoding+.
*
* 65.chr #=> "A"
* 230.chr #=> "\xE6"
*/
static mrb_value
mrb_int_chr(mrb_state *mrb, mrb_value x)
{
mrb_int chr;
char c;
chr = to_int(x);
if (chr >= (1 << CHAR_BIT)) {
mrb_raisef(mrb, E_RANGE_ERROR, "%S out of char range", x);
}
c = (char)chr;
return mrb_str_new(mrb, &c, 1);
}
void
mrb_mruby_numeric_ext_gem_init(mrb_state* mrb)
{
struct RClass *i = mrb_module_get(mrb, "Integral");
mrb_define_method(mrb, i, "chr", mrb_int_chr, MRB_ARGS_NONE());
}
void
mrb_mruby_numeric_ext_gem_final(mrb_state* mrb)
{
}
|