index
:
mruby
master
mruby2-draft
removing-y-tab-c
revert-5391-throw
stable
web_export
Lightweight Ruby
realtradam
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
src
/
string.c
Age
Commit message (
Expand
)
Author
2019-06-26
Silence unused label warnings from gcc; ref #4524
KOBAYASHI Shuji
2019-06-26
Merge pull request #4524 from dearblue/reverse-utf8
Yukihiro "Matz" Matsumoto
2019-06-26
Merge pull request #4532 from shuujii/fix-String-byteslice-with-MRB_UTF8_STRI...
Yukihiro "Matz" Matsumoto
2019-06-25
Fix `String#byteslice` with `MRB_UTF8_STRING` and some edge cases
KOBAYASHI Shuji
2019-06-25
Fix `mrb_str_to_str()` to handle symbols.
Yukihiro "Matz" Matsumoto
2019-06-22
Fix the unnecessary `mrb_str_modify()` call
dearblue
2019-06-22
Delete the unnecessary block brace in `mrb_str_reverse_bang`
dearblue
2019-06-22
Fix string brakes for one UTF-8 charactor
dearblue
2019-06-22
Change to UTF-8 string reversing with in place
dearblue
2019-06-22
Replacement to function for string reversing
dearblue
2019-06-22
Fix potential overflow in `utf8len()`
dearblue
2019-05-25
Fix double rounded by negative index
dearblue
2019-05-25
Name the return value of `mrb_range_beg_len()`
dearblue
2019-05-08
Use `mrb_string_value_cstr` in `mrb_str_to_dbl`
KOBAYASHI Shuji
2019-05-07
Refactor `mrb_str_to_cstr` and `mrb_string_value_cstr`
KOBAYASHI Shuji
2019-05-02
Merge pull request #4417 from shuujii/unify-overflow-error-class-for-conversi...
Yukihiro "Matz" Matsumoto
2019-05-02
Unify overflow error class for conversion to integer to `RangeError`
KOBAYASHI Shuji
2019-05-01
Remove unneeded `argc` check in `mrb_str_aref_m()`
KOBAYASHI Shuji
2019-04-24
Remove unnecessary `mrb_regexp_check()` and related functions.
Yukihiro "Matz" Matsumoto
2019-04-09
Extract frozen checking to function
KOBAYASHI Shuji
2019-03-26
Fix missing `MRB_API` prefix for functions below; clse #4267
Yukihiro "Matz" Matsumoto
2019-03-25
Use uppercase version of `ctype` macros e.g. `ISSPACE`; fix #4338
Yukihiro "Matz" Matsumoto
2019-02-06
Reduce invocation of `mrb_convert_type()` from `mrb_str_to_str()`.
Yukihiro "Matz" Matsumoto
2019-02-05
Fix markup and remove unneeded comment for doc in `src/string.c` [ci skip]
KOBAYASHI Shuji
2019-02-04
Fix `Symbol#size` for multi-byte characters with `MRB_UTF8_STRING`
KOBAYASHI Shuji
2019-01-29
Remove unused macro in `src/string.c`
KOBAYASHI Shuji
2018-12-17
Recover `String#to_str`; ref #4177
Yukihiro "Matz" Matsumoto
2018-11-19
Call `mrb_str_to_str` from `mrb_string_value_ptr` for compatibility.
Yukihiro "Matz" Matsumoto
2018-11-19
Use type checking `mrb_to_str` instead of converting `mrb_str_to_str`.
Yukihiro "Matz" Matsumoto
2018-11-19
Remove implicit conversion using `to_str` method; fix #3854
Yukihiro "Matz" Matsumoto
2018-06-28
Use `mrb_raise()` instead of `mrb_raisef()`; ref #4062
Yukihiro "Matz" Matsumoto
2018-06-27
Add negative check in `mrb_str_resize`; fix #4062
Yukihiro "Matz" Matsumoto
2018-05-02
Need to call `mrb_str_modify()` in `mrb_str_cat_str()`; fix #4018
Yukihiro "Matz" Matsumoto
2018-04-28
Fix broken support of `MRB_WITHOUT_FLOAT`; fix #4015
Yukihiro "Matz" Matsumoto
2018-04-17
Fallback to float when caompiled binary with 64bit compiler.
Takeshi Watanabe
2018-03-24
Return nil if type differ in `String#<=>`.
Takeshi Watanabe
2018-02-12
`String#inspect` to use hexadecimal, not octal to print unprintable.
Yukihiro "Matz" Matsumoto
2017-12-23
Make source compilable with C++17
Lothar Scholz
2017-12-12
Modifying frozen objects will raise `FrozenError`.
Yukihiro "Matz" Matsumoto
2017-11-08
Should allocate memory region before updating `len`; fix #3842
Yukihiro "Matz" Matsumoto
2017-11-04
Merge branch 'master' of github.com:mruby/mruby
YAMAMOTO Masaya
2017-11-03
Should not use `FSHARED` state for string from `irep` pools; fix #3829
Yukihiro "Matz" Matsumoto
2017-10-11
Add MRB_WITHOUT_FLOAT
YAMAMOTO Masaya
2017-10-01
Add new type of shared string: `RSTR_FSHARED`.
Yukihiro "Matz" Matsumoto
2017-09-27
fix: src\string.c(2219): warning C4244: 'function': conversion from 'mrb_int'...
Tomasz Dąbrowski
2017-09-27
fix: src\string.c(1924): warning C4244: '=': conversion from 'mrb_int' to 'in...
Tomasz Dąbrowski
2017-09-27
fix: src\string.c(1130): warning C4244: '=': conversion from 'mrb_int' to 'in...
Tomasz Dąbrowski
2017-09-27
fix: src\string.c(497): warning C4244: '=': conversion from 'mrb_int' to 'lon...
Tomasz Dąbrowski
2017-09-27
fix: src\hash.c(27): warning C4244: '=': conversion from 'mrb_int' to 'khint_...
Tomasz Dąbrowski
2017-08-22
`strlen` returns `size_t`; need to cast before assigning to `int`.
Yukihiro "Matz" Matsumoto
[next]