1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:37:44 +00:00

LibCore: Add System::environment

Move this from an internal function of Core::Process so that it can be
used elsewhere.
This commit is contained in:
Shannon Booth 2023-07-17 16:41:43 +12:00 committed by Sam Atkins
parent 806808f406
commit cb920b23cc
3 changed files with 16 additions and 16 deletions

View file

@ -271,4 +271,6 @@ ErrorOr<void> posix_fallocate(int fd, off_t offset, off_t length);
ErrorOr<String> resolve_executable_from_environment(StringView filename, int flags = 0);
char** environment();
}