#ifndef PROCESS_INFO_H #define PROCESS_INFO_H #include struct process_info { pid_t PID; const char *name; uid_t UID; }; #endif // PROCESS_INFO_H