summaryrefslogtreecommitdiff
path: root/ext/-test-/symbol/intern.c
blob: 6ae86a6104bcf19e19f882e39104c86feaa037f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "ruby.h"

static VALUE
bug_sym_interned_p(VALUE self, VALUE name)
{
    ID id = rb_check_id(&name);
    return id ? Qtrue : Qfalse;
}

void
Init_intern(VALUE klass)
{
    rb_define_singleton_method(klass, "interned?", bug_sym_interned_p, 1);
}