summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-string-ext/src
AgeCommit message (Expand)Author
2018-04-19`String#lines` with a block is deprecated style.Yukihiro "Matz" Matsumoto
2017-12-08Uninitialized value returned.Yukihiro "Matz" Matsumoto
2017-11-04Merge branch 'master' of github.com:mruby/mrubyYAMAMOTO Masaya
2017-10-17Use a new function: `mrb_get_argc()`; ref #3826Yukihiro "Matz" Matsumoto
2017-10-17Add `String#delete_{prefix,suffix}`; CRuby2.5Yukihiro "Matz" Matsumoto
2017-10-16Support MRB_WIHTOUT_FLOAT to mruby-string-extYAMAMOTO Masaya
2017-09-27fix: mrbgems\mruby-string-ext\src\string.c(49): warning C4244: '=': conversio...Tomasz Dąbrowski
2017-09-27fix: mrbgems\mruby-string-ext\src\string.c(30): warning C4244: '=': conversio...Tomasz Dąbrowski
2017-09-27fix: mrbgems\mruby-string-ext\src\string.c(38): warning C4244: '=': conversio...Tomasz Dąbrowski
2017-08-18Rename `mrb_str_concat2` to `mrb_str_concat_m`.Yukihiro "Matz" Matsumoto
2017-06-20Avoid using `snprintf(3)` in case `MRB_DISABLE_STDIO`; fix #3714Yukihiro "Matz" Matsumoto
2017-06-19Save gc_arena after buffer got allocatedAsmod4n
2017-06-16Use `MRB_PRId` instead of `d` for mrb_int decimal specifier; ref #3701Yukihiro "Matz" Matsumoto
2017-06-16Use `mrb_str_new()` instead of `malloc()`; ref #3701Yukihiro "Matz" Matsumoto
2017-06-16Should not use `sizeof(buf)` when `buf` is `char*`; #3701Yukihiro "Matz" Matsumoto
2017-06-14Use malloc instead of dynamic allocationksss
2017-06-14Fix arena overflow errorksss
2017-06-14Reimplement String#uptoksss
2017-05-21String#concat: Try to convert when not stringksss
2017-04-25Silence warnings caused by implicit type casting.Yukihiro "Matz" Matsumoto
2017-04-03Unify `else` clause styleYukihiro "Matz" Matsumoto
2017-02-10String#ljust and String#rjust reimplemented with optimized RubyTomasz Dabrowski
2017-02-10String#ljust and String#rjust reimplementation (fix #3445)Tomasz Dabrowski
2017-01-23Changed the behavior of mrb_range_beg_len(); close #3411Yukihiro "Matz" Matsumoto
2017-01-04Rewrite String#prepend with Rubyksss
2016-12-28save/restore arena index around yield; ref #3359Yukihiro "Matz" Matsumoto
2016-11-24Read length after args in String#setbyteCraig Lehmann
2016-11-16Fixed memory disclosure in String#linesYukihiro "Matz" Matsumoto
2016-08-17Fix String#ord failure which return a negative valueHiroshi Mimaki
2015-11-27include changed from by quotes ("") to by brackets (<>); close #3032Yukihiro "Matz" Matsumoto
2015-09-24UTF-8 string support in coreYukihiro "Matz" Matsumoto
2015-08-05add String#setbyte and String#byteslice to mruby-string-extYukihiro "Matz" Matsumoto
2015-05-28remove unnecessary including of <ctype.h>cremno
2015-04-18Suppress warnings generated by -Wwrite-stringsKouhei Sutou
2014-12-17mrb_str_new(mrb, "", len) creates an unmodifiable string object; ref #2674Yukihiro "Matz" Matsumoto
2014-12-17Add String#prependJun Hiroe
2014-08-21use mrb_str_cat_lit() instead of mrb_str_cat_cstr().Tatsuhiko Kubo
2014-08-11"-a-a-".succ should be "-a-b-"mattn
2014-08-11Fix String#succ. "-a-".succ should be "-b-"mattn
2014-08-11Fix String#succ. "-".succ should be "."mattn
2014-08-08Add String#succ, String#succ!, String#next, String#next!mattn
2014-06-11String#clear: use String#replace to simpleksss
2014-06-11Add NOFREE macrosJun Hiroe
2014-06-07move String#clear to mruby-string-ext; ref #2370Yukihiro "Matz" Matsumoto
2014-06-04fix String#lines comment; ref mattn@2e1855aYukihiro "Matz" Matsumoto
2014-06-04Add String#linesmattn
2014-06-03Implement String#chrJun Hiroe
2014-04-25Use mrb_int in mrbgem rest argument getting.take_cheeze
2014-04-14reduce RSTRING_PTR usagecremno
2014-03-27add String#octcubicdaiya