diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-04-04 00:08:01 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-04-04 00:08:01 -0700 |
commit | 93f0e3d10580b0a8126018d0a05dd46b1aa84bf6 (patch) | |
tree | f16479c293e657f411cde1346f37df224fe821f2 /eval.c | |
parent | d2aac0db3dbabc163aad4722025db6051f56d804 (diff) | |
download | txr-93f0e3d10580b0a8126018d0a05dd46b1aa84bf6.tar.gz txr-93f0e3d10580b0a8126018d0a05dd46b1aa84bf6.tar.bz2 txr-93f0e3d10580b0a8126018d0a05dd46b1aa84bf6.zip |
New time-parse-local and time-parse-utc functions.
* eval.c (eval_init): Register intrinsic functions
time-parse-local and time-parse-utc.
* lib.c (strptime_wrap): New static function.
(time_parse): Now implemented as by call to strptime_wrap.
(time_parse_local, time_parse_utc): New functions.
These get the time_t time from struct tm without
constructing the intermediate Lisp structure.
* lib.h (time_parse_local, time_parse_utc): Declared.
* txr.1: Documented new functions.
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -6133,6 +6133,8 @@ void eval_init(void) reg_fun(intern(lit("make-time"), user_package), func_n7(make_time)); reg_fun(intern(lit("make-time-utc"), user_package), func_n7(make_time_utc)); reg_fun(intern(lit("time-parse"), user_package), func_n2(time_parse)); + reg_fun(intern(lit("time-parse-local"), user_package), func_n2(time_parse_local)); + reg_fun(intern(lit("time-parse-utc"), user_package), func_n2(time_parse_utc)); reg_fun(intern(lit("source-loc"), user_package), func_n1(source_loc)); reg_fun(intern(lit("source-loc-str"), user_package), func_n2o(source_loc_str, 1)); |