llvm-project
44 строки · 1.3 Кб
1//===-- Implementation of getenv ------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "src/stdlib/getenv.h"
10#include "config/linux/app.h"
11#include "src/__support/CPP/string_view.h"
12#include "src/__support/common.h"
13
14#include <stddef.h> // For size_t.
15
16namespace LIBC_NAMESPACE {
17
18LLVM_LIBC_FUNCTION(char *, getenv, (const char *name)) {
19char **env_ptr = reinterpret_cast<char **>(LIBC_NAMESPACE::app.env_ptr);
20
21if (name == nullptr || env_ptr == nullptr)
22return nullptr;
23
24LIBC_NAMESPACE::cpp::string_view env_var_name(name);
25if (env_var_name.size() == 0)
26return nullptr;
27for (char **env = env_ptr; *env != nullptr; env++) {
28LIBC_NAMESPACE::cpp::string_view cur(*env);
29if (!cur.starts_with(env_var_name))
30continue;
31
32if (cur[env_var_name.size()] != '=')
33continue;
34
35// Remove the name and the equals sign.
36cur.remove_prefix(env_var_name.size() + 1);
37// We know that data is null terminated, so this is safe.
38return const_cast<char *>(cur.data());
39}
40
41return nullptr;
42}
43
44} // namespace LIBC_NAMESPACE
45