mirror of
https://github.com/yuzu-emu/AppImageKit-checkrt.git
synced 2025-01-11 12:15:40 +00:00
11 lines
147 B
C
Executable file
11 lines
147 B
C
Executable file
#ifndef ENV_H
|
|
#define END_H
|
|
|
|
#include <unistd.h>
|
|
|
|
pid_t get_parent_pid();
|
|
char* const* read_parent_env();
|
|
void env_free(char* const *env);
|
|
|
|
#endif
|