summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Expand)Author
2013-03-17Add float.h. It exists even if the environment was freestanding. It has been ...Masaki Muranaka
2013-03-17resolve conflict from #1017Yukihiro Matz Matsumoto
2013-03-16Merge pull request #1016 from monaka/pr-reduce-string.h-20130316Yukihiro "Matz" Matsumoto
2013-03-16Remove stdlib.h from mruby.h. It is for portability (care for freestanding en...Masaki Muranaka
2013-03-16Remove unnecessory stdint.h.Masaki Muranaka
2013-03-16Remove unused string.h.Masaki Muranaka
2013-03-16Remove string.h in khash.hMasaki Muranaka
2013-03-16fix segmentation fault in BasicObject#inspecttakkaw
2013-03-15rename mrb_basic to mrb_basic_ptr; close #1011Yukihiro Matz Matsumoto
2013-03-15obsolete mrb_object; opposite of bc870ceYukihiro Matz Matsumoto
2013-03-15resolve conflictYukihiro Matz Matsumoto
2013-03-14Fix indentation in symbol.ckano4
2013-03-14Add break to default case in switch statementkano4
2013-03-14add mrb_int overflow check for mrb_intYukihiro Matz Matsumoto
2013-03-14Merge pull request #997 from monaka/pr-add-type-mrb_bool_tYukihiro "Matz" Matsumoto
2013-03-14use size_t for string length C APIYukihiro Matz Matsumoto
2013-03-14symbol length make size_t from mrb_int; cancel #993 monaka/pr-cleanup-symbol....Yukihiro Matz Matsumoto
2013-03-14Merge pull request #993 from monaka/pr-cleanup-symbol.c-20130312Yukihiro "Matz" Matsumoto
2013-03-14remove PARANOID from commentsYukihiro Matz Matsumoto
2013-03-14Merge pull request #987 from monaka/pr-clean-up-parse.y-20130312Yukihiro "Matz" Matsumoto
2013-03-14Define type mrb_bool. It is typedef-ed to _Bool on C99, unsigned int on MSVC.Masaki Muranaka
2013-03-14Remove compiler warningmattn
2013-03-13Merge pull request #1001 from monaka/pr-add-type-check-in-mrb_str_to_cstrYukihiro "Matz" Matsumoto
2013-03-13Merge pull request #1002 from monaka/pr-extract-stack-zero-fillingYukihiro "Matz" Matsumoto
2013-03-13Merge pull request #996 from iij/pr-systemcallerrorYukihiro "Matz" Matsumoto
2013-03-13Add null checkkano4
2013-03-13Extract stack zero filling to stack_clear(). Porting evelopers can optimize b...Masaki Muranaka
2013-03-13Simplify. Temporary variable "i" is removed.Masaki Muranaka
2013-03-13Add the type check in mrb_str_to_cstr().Masaki Muranaka
2013-03-13mrb_str_new2 -> mrb_str_new_cstrTomoyuki Sahara
2013-03-13Merge branch 'master' into pr-systemcallerrorTomoyuki Sahara
2013-03-13Merge branch 'master' into pr-systemcallerrorTomoyuki Sahara
2013-03-13mrb_sys_fail raises SystemCallError if we have it.Tomoyuki Sahara
2013-03-12Merge pull request #986 from monaka/pr-use-mrb_obj_alloc_string-instead-of-st...Yukihiro "Matz" Matsumoto
2013-03-12Merge pull request #985 from monaka/pr-remove-unused-code-20130312Yukihiro "Matz" Matsumoto
2013-03-12Merge pull request #984 from monaka/pr-make-mrb_str_new2-obsoleteYukihiro "Matz" Matsumoto
2013-03-12Merge pull request #982 from monaka/pr-make-MRB_STR_BUF_MIN_SIZE-configurableYukihiro "Matz" Matsumoto
2013-03-12Use mrb_int as possible.Masaki Muranaka
2013-03-12Copy to *lenp just in case lenp != NULL.Masaki Muranaka
2013-03-12Merge pull request #988 from monaka/pr-use-suitable-types-20130312Yukihiro "Matz" Matsumoto
2013-03-12Merge pull request #983 from monaka/pr-fix-indent-in-parse.y-20130312Yukihiro "Matz" Matsumoto
2013-03-12Use suitable types for variables.Masaki Muranaka
2013-03-12Use int. They are no need to use unsigned/signed long. Think about 16bit arch...Masaki Muranaka
2013-03-12Add comments for paradnoid (a.k.a. mission critical) engineers.Masaki Muranaka
2013-03-12Remove a meaningless type cast.Masaki Muranaka
2013-03-12Remove str_alloc(). Use mrb_obj_alloc_string instead.Masaki Muranaka
2013-03-12Remove mrb_str_sublen() as it is not used.Masaki Muranaka
2013-03-12Remove mrb_str_new2(). Use mrb_str_new_cstr() instead.Masaki Muranaka
2013-03-12Fix indents.Masaki Muranaka
2013-03-12Rename STR_BUF_MIN_SIZE to MRB_STR_BUF_MIN_SIZE. Make it configurable.Masaki Muranaka