blob: b17df8349c83dbf74147d6524b765f3d334f8a64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* util9p/uptime.h - 9P access to uptime
*
* Copyright (C) 2025 Luke T. Shumaker <lukeshu@lukeshu.com>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _UTIL9P_UPTIME_H_
#define _UTIL9P_UPTIME_H_
#include <lib9p/srv.h>
struct uptime_file {
char *name;
uint64_t pathnum;
};
LO_IMPLEMENTATION_H(lib9p_srv_file, struct uptime_file, uptime_file);
#endif /* _UTIL9P_UPTIME_H_ */
|