mirror of
https://github.com/yuzu-emu/AppImageKit-checkrt.git
synced 2024-12-12 18:54:21 +01: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
|