blob: 2d0e981a3e52ec259ee29460dd7e2047ac55436a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/**************************************************************/
/* tpax: a topological pax implementation */
/* Copyright (C) 2020--2024 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.TPAX. */
/**************************************************************/
#ifndef TPAX_FTIME_IMPL_H
#define TPAX_FTIME_IMPL_H
#include <time.h>
#include <sys/time.h>
#include <sys/stat.h>
#include "tpax_driver_impl.h"
void tpax_ftime_restore(
const struct tpax_driver_ctx *,
int fd, const struct stat *);
void tpax_ftime_restore_and_close(
const struct tpax_driver_ctx *,
int fd, const struct stat *);
#endif
|