| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
refactor string parsing
|
|
|
|
Add numeric format function
|
|
'aspec' should be large at least 24 bit.
|
|
Remove memmove() in src/vm.c.
|
|
Removed unused expr
|
|
Fix a warning happens on MRB_INT64 enabled.
|
|
|
|
crimsonwoods/remove_bitshifted_constants_larger_than_16bit
remove bit-shift operation.
|
|
|
|
value_move() is type-safer than memmove().
And may be faster on some targets.
(If it makes slow on your target,
rewrite to call memset(s1, s2, sizeof(mrb_value)*n)
in value_move().)
|
|
|
|
|
|
supported since C89.
|
|
|
|
Reduce string.h.
|
|
environments).
This is a first step. It will be reduced stdlib.h in each files later.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Define mrb_bool_t.
|
|
|
|
monaka/pr-cleanup-symbol.c-20130312
|
|
Cleanup symbol.c.
|
|
|
|
Clean up parse.y.
|
|
It is safer than applying 1bit bit-fields to signed int.
For forward compatibility, you should substiture only 1 or 0 for the variable typed mrb_bool.
|
|
|