Skip to content

Instantly share code, notes, and snippets.

@FlaviuSim
Created October 16, 2011 11:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FlaviuSim/1290795 to your computer and use it in GitHub Desktop.
Save FlaviuSim/1290795 to your computer and use it in GitHub Desktop.
VALUE
rb_str_intern(VALUE s)
{
VALUE str = RB_GC_GUARD(s);
ID id;
id = rb_intern_str(str);
return ID2SYM(id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment