mirror of
https://github.com/swaywm/sway.git
synced 2026-04-18 06:46:56 -04: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
|