forked from dnkl/foot
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
420 B
13 lines
420 B
#pragma once |
|
|
|
#include <stdbool.h> |
|
#include "config.h" |
|
#include "reaper.h" |
|
|
|
bool spawn(struct reaper *reaper, const char *cwd, char *const argv[], |
|
int stdin_fd, int stdout_fd, int stderr_fd); |
|
|
|
bool spawn_expand_template( |
|
const struct config_spawn_template *template, |
|
size_t key_count, const char *key_names[static key_count], |
|
const char *key_values[static key_count], size_t *argc, char ***argv);
|
|
|