diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2019-03-06 22:25:56 -0800 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2019-03-06 22:25:56 -0800 |
commit | b1d0e0e97ce747534a945a6fe0c3a15ccd8dbf00 (patch) | |
tree | 57b2f054611114783e7499996e730611691f94ff /stat.c | |
parent | d4a4ef26ef5245813ed74847147ce7f58c5a5232 (diff) | |
download | bfs-b1d0e0e97ce747534a945a6fe0c3a15ccd8dbf00.tar.xz |
parse: Use a trie to hold currently open files
Diffstat (limited to 'stat.c')
-rw-r--r-- | stat.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -334,3 +334,8 @@ const struct timespec *bfs_stat_time(const struct bfs_stat *buf, enum bfs_stat_f return NULL; } } + +void bfs_stat_id(const struct bfs_stat *buf, bfs_file_id *id) { + memcpy(*id, &buf->dev, sizeof(buf->dev)); + memcpy(*id + sizeof(buf->dev), &buf->ino, sizeof(buf->ino)); +} |