1. 08 Aug, 2014 9 commits
  2. 07 Aug, 2014 2 commits
  3. 06 Aug, 2014 8 commits
  4. 05 Aug, 2014 8 commits
  5. 04 Aug, 2014 10 commits
  6. 03 Aug, 2014 3 commits
    • cremno's avatar
      change linkage of mrb_str_size to internal · 7dabb33c
      cremno authored
      Use RSTRING_LEN to get the length.
      7dabb33c
    • cremno's avatar
      MSVC: add simple (v)snprintf implementation · b6e27218
      cremno authored
      _snprintf is not C99's snprintf!
      
      This simple implementation, unlike _snprintf,
      always null-terminates and returns the expected
      return value (in most cases).
      Other C99 behaviors (like format specifiers) require
      adding a complete snprintf implementation.
      Do we want or need that?
      
      The same applies to vsnprintf (aka _vsnprintf).
      b6e27218
    • cremno's avatar
      fix conversion warnings · a70413c4
      cremno authored
      Those warnings are not enabled by default,
      but getting rid of them doesn't hurt.
      a70413c4