diff options
| author | Masaki Muranaka <[email protected]> | 2013-02-23 21:21:15 +0900 |
|---|---|---|
| committer | Masaki Muranaka <[email protected]> | 2013-02-23 21:21:15 +0900 |
| commit | dd6234974932382181ced7a813ad71d426d1e0ab (patch) | |
| tree | bc894c89ed5603d3a39ad9e6af1308290cb1c593 /src/string.c | |
| parent | 58b9e7672474160df90ba11c915eeac093fe12d2 (diff) | |
| download | mruby-dd6234974932382181ced7a813ad71d426d1e0ab.tar.gz mruby-dd6234974932382181ced7a813ad71d426d1e0ab.zip | |
Reduce sprintf() calls. Remove mrb_int_to_str() and MRB_INT_FORMAT.
Diffstat (limited to 'src/string.c')
| -rw-r--r-- | src/string.c | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/src/string.c b/src/string.c index 6afb4f6ca..6e0c8d1a2 100644 --- a/src/string.c +++ b/src/string.c @@ -14,6 +14,7 @@ #include "mruby/range.h" #include "mruby/array.h" #include "mruby/class.h" +#include "mruby/numeric.h" #include <stdio.h> #include "re.h" @@ -2552,9 +2553,16 @@ mrb_str_dump(mrb_state *mrb, mrb_value str) *q++ = c; } else { - *q++ = '\\'; - sprintf(q, "%03o", c&0xff); - q += 3; + mrb_value octstr; + mrb_value chr; + const char *ptr; + int len; + chr = mrb_fixnum_value(c & 0xff); + octstr = mrb_fix2str(mrb, chr, 8); + ptr = mrb_str_body(octstr, &len); + memcpy(q, "\\000", 4); + memcpy(q + 4 - len, ptr, len); + q += 4; } } *q++ = '"'; @@ -2637,9 +2645,17 @@ mrb_str_inspect(mrb_state *mrb, mrb_value str) continue; } else { - int n = sprintf(buf, "\\%03o", c & 0377); - mrb_str_buf_cat(mrb, result, buf, n); - continue; + mrb_value octstr; + mrb_value chr; + const char *ptr; + int len; + chr = mrb_fixnum_value(c & 0xff); + octstr = mrb_fix2str(mrb, chr, 8); + ptr = mrb_str_body(octstr, &len); + memcpy(buf, "\\000", 4); + memcpy(buf + 4 - len, ptr, len); + mrb_str_buf_cat(mrb, result, buf, 4); + continue; } } mrb_str_buf_cat(mrb, result, "\"", 1); |
