FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
History for src/string.c - rke/mruby · GitHub
rke
/
mruby
Public
forked from
mruby/mruby
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Commits
Breadcrumbs
History for
mruby
src
string.c
on
master
User selector
Datepicker
Commit history
Commits on Dec 19, 2012
Modify String#bytes.
Show description for 72ae215
masamitsu-murase
committed
72ae215
View commit details
Copy full SHA for 72ae215
View code at this point
Browse repository at this point
Commits on Dec 9, 2012
Fix memory leak in String#to_i and String#to_f.
masamitsu-murase
committed
a7182c2
View commit details
Copy full SHA for a7182c2
View code at this point
Browse repository at this point
Commits on Dec 1, 2012
Fix typos: invalide -> invalid; patch from @darashi; close #577
matz
committed
1d3f4b3
View commit details
Copy full SHA for 1d3f4b3
View code at this point
Browse repository at this point
Commits on Nov 16, 2012
int and mrb_int should not be mixed under -DMRB_INT64; may fix #557
matz
committed
7cea9d7
View commit details
Copy full SHA for 7cea9d7
View code at this point
Browse repository at this point
Commits on Nov 8, 2012
adjust string length after String#chomp!
Akira Yumiyama
committed
d090f3e
View commit details
Copy full SHA for d090f3e
View code at this point
Browse repository at this point
Commits on Nov 4, 2012
replace RBASIC by mrb_basic
matz
committed
c903910
View commit details
Copy full SHA for c903910
View code at this point
Browse repository at this point
Commits on Nov 3, 2012
add new predicates mrb_string_p(),mrb_array_p(),mrb_hash_p()
matz
committed
d2d2e9f
View commit details
Copy full SHA for d2d2e9f
View code at this point
Browse repository at this point
Commits on Oct 31, 2012
add String#bytes to return bytes in a string
matz
committed
fe36bdb
View commit details
Copy full SHA for fe36bdb
View code at this point
Browse repository at this point
Commits on Oct 23, 2012
mrb_raisef(): new function. Same as previou version of mrb_raise().
Show description for 6069a33
monaka
committed
6069a33
View commit details
Copy full SHA for 6069a33
View code at this point
Browse repository at this point
Commits on Oct 22, 2012
Remove redundant sizeof(char). "Always sizeof(char) == 1" is described in ISO C specs.
monaka
committed
dd10048
View commit details
Copy full SHA for dd10048
View code at this point
Browse repository at this point
Commits on Sep 13, 2012
should define String#+ (non inlined); close #469
matz
committed
f0f113e
View commit details
Copy full SHA for f0f113e
View code at this point
Browse repository at this point
Commits on Sep 12, 2012
two more wrapper macros for ctype.h
Show description for 32b88c7
tsahara
committed
32b88c7
View commit details
Copy full SHA for 32b88c7
View code at this point
Browse repository at this point
Commits on Sep 11, 2012
Define DBL_DIG only if it wasn't previously defined
Show description for a24fde1
emboss
committed
a24fde1
View commit details
Copy full SHA for a24fde1
View code at this point
Browse repository at this point
Commits on Aug 18, 2012
reduce mrb_funcall invocations
matz
committed
e5dde46
View commit details
Copy full SHA for e5dde46
View code at this point
Browse repository at this point
Commits on Aug 12, 2012
use TRUE/FALSE instead of 1/0
matz
committed
1ed39d5
View commit details
Copy full SHA for 1ed39d5
View code at this point
Browse repository at this point
Commits on Jul 30, 2012
Merge pull request #407 from silverhammermba/cpp
Show description for ff70738
matz
committed
ff70738
View commit details
Copy full SHA for ff70738
View code at this point
Browse repository at this point
do not use INT32_MAX; close #407
matz
committed
bd035bc
View commit details
Copy full SHA for bd035bc
View code at this point
Browse repository at this point
Commits on Jul 29, 2012
Make all(?) void casts explicit for C++
silverhammermba
committed
5a4beee
View commit details
Copy full SHA for 5a4beee
View code at this point
Browse repository at this point
Remove commented out code.
monaka
committed
b2fc62f
View commit details
Copy full SHA for b2fc62f
View code at this point
Browse repository at this point
Commits on Jul 14, 2012
Remove unnecessary header inclusion
junjis0203
committed
9636611
View commit details
Copy full SHA for 9636611
View code at this point
Browse repository at this point
Commits on Jul 13, 2012
less <stdio.h>
matz
committed
48c73ac
View commit details
Copy full SHA for 48c73ac
View code at this point
Browse repository at this point
Commits on Jul 12, 2012
remove st.h inclusion
matz
committed
ae2cd24
View commit details
Copy full SHA for ae2cd24
View code at this point
Browse repository at this point
Commits on Jul 6, 2012
remove debug printf; close #345
matz
committed
4406a08
View commit details
Copy full SHA for 4406a08
View code at this point
Browse repository at this point
Commits on Jun 30, 2012
Fix str_replace in string.c
Show description for 866f797
masamitsu-murase
committed
866f797
View commit details
Copy full SHA for 866f797
View code at this point
Browse repository at this point
Commits on Jun 27, 2012
sizeof("a") is bigger by one than strlen("a")
matz
committed
0a88499
View commit details
Copy full SHA for 0a88499
View code at this point
Browse repository at this point
use return value from sprintf/snprintf
matz
committed
6f9ed1c
View commit details
Copy full SHA for 6f9ed1c
View code at this point
Browse repository at this point
Commits on Jun 25, 2012
Prevent memory leak when string literal is created.
masamitsu-murase
committed
c152c19
View commit details
Copy full SHA for c152c19
View code at this point
Browse repository at this point
Commits on Jun 23, 2012
reduce calling mrb_str_new_cstr() to avoid strlen(); #301
matz
committed
f045e64
View commit details
Copy full SHA for f045e64
View code at this point
Browse repository at this point
remove assertion for false assumption; mrb_str_new(0, len) where len > 0 can be used to allocate an unintialized string
matz
committed
2d781f5
View commit details
Copy full SHA for 2d781f5
View code at this point
Browse repository at this point
Commits on Jun 22, 2012
Use mrb_str_new() instead of mrb_str_new2() as possible.
monaka
committed
21f2e53
View commit details
Copy full SHA for 21f2e53
View code at this point
Browse repository at this point
Commits on Jun 21, 2012
reduce calling of strlen(); #301
matz
committed
a70c4e0
View commit details
Copy full SHA for a70c4e0
View code at this point
Browse repository at this point
Commits on Jun 20, 2012
remove RuntimeError from mrb_state
matz
committed
ef50e63
View commit details
Copy full SHA for ef50e63
View code at this point
Browse repository at this point
Commits on Jun 15, 2012
Remove TRUE/FALSE definition in C sources. (Reported by #282 but not applied.)
monaka
committed
2c93fab
View commit details
Copy full SHA for 2c93fab
View code at this point
Browse repository at this point
use ENABLE/DISABLE instead of INCLUDE for configuration macro names
matz
committed
76f7aec
View commit details
Copy full SHA for 76f7aec
View code at this point
Browse repository at this point
Commits on Jun 14, 2012
Remove some redundant code.
monaka
committed
f564ec7
View commit details
Copy full SHA for f564ec7
View code at this point
Browse repository at this point
Previous
Next
Back
|
FazBrowse Home
|
New Git URL