mirror of
https://git.suyu.dev/suyu/AppImageKit-checkrt.git
synced 2025-12-21 21:26:06 +01:00
10 lines
147 B
C
Executable file
10 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
|