/* util9p/whoami.h - Echo back the 9P user info * * Copyright (C) 2024-2025 Luke T. Shumaker * SPDX-License-Identifier: AGPL-3.0-or-later */ #ifndef _UTIL9P_WHOAMI_H_ #define _UTIL9P_WHOAMI_H_ #include struct whoami_file { char *name; uint64_t pathnum; }; LO_IMPLEMENTATION_H(lib9p_srv_file, struct whoami_file, whoami_file); #endif /* _UTIL9P_WHOAMI_H_ */