mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
This section allows the user to define custom environment variables to be set in the child process: [environment] name=value
13 lines
367 B
C
13 lines
367 B
C
#pragma once
|
|
#include <stdbool.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include "config.h"
|
|
#include "user-notification.h"
|
|
|
|
pid_t slave_spawn(
|
|
int ptmx, int argc, const char *cwd, char *const *argv, char *const *envp,
|
|
const env_var_list_t *extra_env_vars, const char *term_env,
|
|
const char *conf_shell, bool login_shell,
|
|
const user_notifications_t *notifications);
|