Apply PIE to nghttpx
[platform/upstream/nghttp2.git] / third-party / mruby / mrbgems / mruby-time / include / mruby / time.h
1 /*
2 ** mruby/time.h - Time class
3 **
4 ** See Copyright Notice in mruby.h
5 */
6
7 #ifndef MRUBY_TIME_H
8 #define MRUBY_TIME_H
9
10 #include "mruby/common.h"
11
12 MRB_BEGIN_DECL
13
14 typedef enum mrb_timezone {
15   MRB_TIMEZONE_NONE   = 0,
16   MRB_TIMEZONE_UTC    = 1,
17   MRB_TIMEZONE_LOCAL  = 2,
18   MRB_TIMEZONE_LAST   = 3
19 } mrb_timezone;
20
21 MRB_API mrb_value mrb_time_at(mrb_state *mrb, double sec, double usec, mrb_timezone timezone);
22
23 MRB_END_DECL
24
25 #endif /* MRUBY_TIME_H */