#ifndef HEADER_CURL_TOOL_FILETIME_H1#define HEADER_CURL_TOOL_FILETIME_H2/***************************************************************************3* _ _ ____ _4* Project ___| | | | _ \| |5* / __| | | | |_) | |6* | (__| |_| | _ <| |___7* \___|\___/|_| \_\_____|8*9* Copyright (C) Daniel Stenberg, <[email protected]>, et al.10*11* This software is licensed as described in the file COPYING, which12* you should have received as part of this distribution. The terms13* are also available at https://curl.se/docs/copyright.html.14*15* You may opt to use, copy, modify, merge, publish, distribute and/or sell16* copies of the Software, and permit persons to whom the Software is17* furnished to do so, under the terms of the COPYING file.18*19* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY20* KIND, either express or implied.21*22* SPDX-License-Identifier: curl23*24***************************************************************************/25#include "tool_setup.h"2627struct GlobalConfig;2829int getfiletime(const char *filename, struct GlobalConfig *global,30curl_off_t *stamp);3132#if defined(HAVE_UTIME) || defined(HAVE_UTIMES) || \33(defined(_WIN32) && (SIZEOF_CURL_OFF_T >= 8))34void setfiletime(curl_off_t filetime, const char *filename,35struct GlobalConfig *global);36#else37#define setfiletime(a,b,c) tool_nop_stmt38#endif /* defined(HAVE_UTIME) || defined(HAVE_UTIMES) || \39(defined(_WIN32) && (SIZEOF_CURL_OFF_T >= 8)) */4041#endif /* HEADER_CURL_TOOL_FILETIME_H */424344