summaryrefslogtreecommitdiffstats
path: root/encoding.c
diff options
context:
space:
mode:
Diffstat (limited to 'encoding.c')
-rw-r--r--encoding.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/encoding.c b/encoding.c
index 6f7b406c8..70309f4f6 100644
--- a/encoding.c
+++ b/encoding.c
@@ -259,6 +259,20 @@ rb_enc_copy(VALUE obj1, VALUE obj2)
}
+/*
+ * call-seq:
+ * obj.encoding => str
+ *
+ * Retruns the encoding name.
+ */
+
+VALUE
+rb_obj_encoding(VALUE obj)
+{
+ return rb_str_new2(rb_enc_name(rb_enc_get(obj)));
+}
+
+
char*
rb_enc_nth(const char *p, const char *e, int nth, rb_encoding *enc)
{