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
/
time.c
Age
Commit message (
Collapse
)
Author
2012-10-15
Avoid memcpy() on copying structure.
Masaki Muranaka
2012-09-11
Fixes #464.
Shannen Saez
2012-09-10
Fixed Windows warning.
Shannen Saez
Compiling on Windows 7 from a Windows SDK 7 prompt with CMake. `nmake all test` now works with the `tzset()` warning gone.
2012-09-06
add Time#inspect
Yukihiro Matsumoto
2012-08-02
Time.new may not take any argument
Yukihiro Matsumoto
2012-08-01
add cast to pacify optimizer
Yukihiro Matsumoto
2012-07-31
float do not have enough precision if MRB_USE_FLOAT is set
Yukihiro Matsumoto
2012-07-29
Make all(?) void casts explicit for C++
Max Anselm
2012-07-23
treat exceptional usec value
Yukihiro Matsumoto
2012-07-23
remove duplicated variable declaration
Yukihiro Matsumoto
2012-07-23
separate sec and usec in mrb_time_plus
Yukihiro Matsumoto
2012-07-23
time.c: separate sec and usec to keep precisions
Yukihiro Matsumoto
2012-07-22
Time.at should take optional second argument
Yukihiro Matsumoto
2012-07-09
should remove memset initialization; update 7496625
Yukihiro Matsumoto
2012-07-09
initialize stuctures on stack without memset(); close #350
Yukihiro Matsumoto
2012-06-27
Use sizeof to get char array sizes.
Masaki Muranaka
2012-06-23
reduce calling mrb_str_new_cstr() to avoid strlen(); #301
Yukihiro Matsumoto
2012-06-15
use ENABLE/DISABLE instead of INCLUDE for configuration macro names
Yukihiro Matsumoto
2012-06-15
Time class made optinal
Yukihiro Matsumoto
2012-06-05
Time#- should return time if operand is a number
Yukihiro Matsumoto
2012-06-05
Add Time#utc
Daniel Bovensiepen
2012-06-04
add Time#getlocal/getgm/getutc
Yukihiro Matsumoto
2012-06-04
time.c add ISO section numbers
Yukihiro Matsumoto
2012-06-03
remove a blank line
Yukihiro Matsumoto
2012-06-03
time - time should not return time, but number
Yukihiro Matsumoto
2012-05-24
made mrb_get_args() better (optinal args, type checks); close #173 #176
Yukihiro Matsumoto
2012-05-21
use mrb_int for struct tm fractions
Yukihiro Matsumoto
2012-05-17
gmtime_r emulated by gmtime_s should return struct tm*; close #146
Yukihiro Matsumoto
2012-05-16
fix #127 on mingw.
mattn
2012-05-13
emulate gmtime_r/localtime_r by gmtime_s/localtime_s on Windows
Yukihiro Matsumoto
2012-05-08
fix #ifdef to pass on windows.
mattn
2012-05-08
rename current_time -> current_mrb_time
Yukihiro Matsumoto
2012-05-08
add 1usec to differentiate two times
Yukihiro Matsumoto
2012-05-08
rename macros NO_USE_ -> NO_
Yukihiro Matsumoto
2012-05-07
update time configuration; now config macros can be supplied by -D compiler ↵
Yukihiro Matsumoto
option
2012-05-07
use portable gmtime
Yukihiro Matsumoto
2012-05-07
initialize_copy: copy destination object may not be intialized
Yukihiro Matsumoto
2012-05-07
remove warning.
mattn
2012-05-07
time functions on windows.
mattn
2012-05-06
test_time should pass
Yukihiro Matsumoto
2012-05-06
Time class available; based on code from @beoran; sorry for jumbo patch
Yukihiro Matsumoto
2012-05-04
move mrb_str_new prototype to mruby.h
Yukihiro Matsumoto