mirror of
https://github.com/swaywm/sway.git
synced 2025-01-31 05:06:45 +00:00
11 lines
159 B
C
11 lines
159 B
C
#ifndef _SWAY_ENV_H
|
|
#define _SWAY_ENV_H
|
|
|
|
void env_free(char **envp);
|
|
|
|
char **env_get_envp();
|
|
|
|
char **env_setenv(char **envp, char *name, char *value);
|
|
|
|
#endif
|