Implement environment variables

This commit is contained in:
2026-03-16 21:20:00 +01:00
parent cba8122b07
commit 65a7511e36
15 changed files with 228 additions and 2 deletions

View File

@@ -93,4 +93,10 @@ int remove (const char* path);
/* mount a volume */
int create_volume (const char* key, int fs_type, const char* device_key);
/* Set environment variable */
int env_set (const char* key, void* buffer, size_t len);
/* Get environment variable */
int env_get (const char* key, void* buffer, size_t len);
#endif // _LIBMSL_M_SYSTEM_H