Sha256: 69076f5938ef80a24d9ac41edb7a94615ec8ba22917feb9ba1bd4c0a5793f7e6
Contents?: true
Size: 466 Bytes
Versions: 10
Compression:
Stored size: 466 Bytes
Contents
/* ** mruby/time.h - Time class ** ** See Copyright Notice in mruby.h */ #ifndef MRUBY_TIME_H #define MRUBY_TIME_H #include "mruby/common.h" #include <time.h> MRB_BEGIN_DECL typedef enum mrb_timezone { MRB_TIMEZONE_NONE = 0, MRB_TIMEZONE_UTC = 1, MRB_TIMEZONE_LOCAL = 2, MRB_TIMEZONE_LAST = 3 } mrb_timezone; MRB_API mrb_value mrb_time_at(mrb_state *mrb, time_t sec, time_t usec, mrb_timezone timezone); MRB_END_DECL #endif /* MRUBY_TIME_H */
Version data entries
10 entries across 10 versions & 1 rubygems