/* ICFS: Interactively Controlled File System Copyright (C) 2024-2025 Fedir Kovalov This program can be distributed under the terms of the GNU GPLv2. See the file LICENSE. */ #ifndef PROCESS_INFO_H #define PROCESS_INFO_H #include struct process_info { pid_t PID; const char *name; }; #endif // PROCESS_INFO_H