函数

GLibenviron_setenv

自:2.32

声明 [src]

gchar**
g_environ_setenv (
  gchar** envp,
  const gchar* variable,
  const gchar* value,
  gboolean overwrite
)

描述 [src]

envp 中提供的环境变量 variable 设置为 value

自此版本可用:2.32

参数

envp

类型:filename 数组

an environment list that can be freed using `g_strfreev()` (e.g., as
returned from g_get_environ()), or `NULL` for an empty
environment list.
参数可以是 NULL
数组必须以 NULL 结尾。
调用的函数取得数据的所有权,负责释放它。
每个元素都是一个平台本机字符串,在 Unix 中使用首选 OS 编码,在 Windows 中使用 UTF-8。
variable

类型:const gchar*

要设置的环境变量,不得包含“=’”。

数据归函数调用者所有。
该值是一个平台本机字符串,在 Unix 中使用首选 OS 编码,在 Windows 中使用 UTF-8。
value

类型:const gchar*

将变量设置为的值。

数据归函数调用者所有。
该值是一个平台本机字符串,在 Unix 中使用首选 OS 编码,在 Windows 中使用 UTF-8。
overwrite

类型:gboolean

如果变量已经存在,是否对其进行修改。

返回值

类型:filename 数组

the updated environment list. Free it using g_strfreev().
数组以 NULL 结尾。
函数调用者取得数据的所有权,负责释放它。
每个元素都是一个平台本机字符串,在 Unix 中使用首选 OS 编码,在 Windows 中使用 UTF-8。