From 885f5974cdf65b59415837ae97f5a14ef1350670 Mon Sep 17 00:00:00 2001 From: Kacper Date: Tue, 9 Dec 2025 19:20:15 +0100 Subject: feat: add gzip and new headers --- include/utime.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 include/utime.h (limited to 'include/utime.h') diff --git a/include/utime.h b/include/utime.h new file mode 100644 index 00000000..404d7003 --- /dev/null +++ b/include/utime.h @@ -0,0 +1,11 @@ +#ifndef __UTIME_H +#define __UTIME_H + +struct utimbuf { + long actime; + long modtime; +}; + +int utime(const char *, const struct utimbuf *); + +#endif -- cgit v1.2.3