reimplement glib functions

This commit is contained in:
slonkazoid 2024-09-11 22:56:53 +03:00
parent 5740bcb961
commit 4f90f08491
No known key found for this signature in database
6 changed files with 126 additions and 6 deletions

10
include/env.h Normal file
View file

@ -0,0 +1,10 @@
#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