diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2020-07-20 07:13:40 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2020-07-20 07:13:40 -0700 |
commit | d9afdbb32c0dd0b693e01b4204176d333805571b (patch) | |
tree | bb515cc1144e5de5127f332ac7f5a4a811192fa0 /ftw.c | |
parent | 9cd58d83904fc531f214c3bc2f506c80d816f415 (diff) | |
download | txr-d9afdbb32c0dd0b693e01b4204176d333805571b.tar.gz txr-d9afdbb32c0dd0b693e01b4204176d333805571b.tar.bz2 txr-d9afdbb32c0dd0b693e01b4204176d333805571b.zip |
stat, lstat and dirstat now take struct param.
* ftw.c (ftw_callback): Pass nil to new parameter of
stat_to_struct, to have a new stat struct allocated as before.
* sysif.c (stat_to_struct, stat_impl, stat_wrap, lstat_wrap
dirstat): New optional parameter that lets caller specify an
existing struct object to fill.
(sysif_init): Adjust registrations of stat, fstat, lstat and
dirstat for new optional parameter.
* sysif.h (stat_to_struct, stat_wrap): Declarations updated.
* txr.1: Documented.
Diffstat (limited to 'ftw.c')
-rw-r--r-- | ftw.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ static int ftw_callback(const char *c_path, const struct stat *c_sb, { val path = string_utf8(c_path); val type = num(c_type); - val sb = stat_to_struct(*c_sb, path); + val sb = stat_to_struct(*c_sb, path, nil); val level = num(fb->level); val base = num(fb->base); val result; |