Commit 88f9770f authored by Seba Gamboa's avatar Seba Gamboa

document mrb_nil_value

parent 0e5b8153
......@@ -176,8 +176,14 @@ mrb_obj_value(void *p)
return v;
}
static inline mrb_value
mrb_nil_value(void)
/**
* Get a nil mrb_value object.
*
* @return
* nil mrb_value object reference.
*/
MRB_INLINE mrb_value mrb_nil_value(void)
{
mrb_value v;
SET_NIL_VALUE(v);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment