1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __SUBCMD_EXEC_CMD_H
3#define __SUBCMD_EXEC_CMD_H
4
5extern void exec_cmd_init(const char *exec_name, const char *prefix,
6 const char *exec_path, const char *exec_path_env);
7
8extern void set_argv_exec_path(const char *exec_path);
9extern const char *extract_argv0_path(const char *path);
10extern void setup_path(void);
11extern int execv_cmd(const char **argv); /* NULL terminated */
12extern int execl_cmd(const char *cmd, ...);
13/* get_argv_exec_path and system_path return malloc'd string, caller must free it */
14extern char *get_argv_exec_path(void);
15extern char *system_path(const char *path);
16
17#endif /* __SUBCMD_EXEC_CMD_H */
18

source code of linux/tools/lib/subcmd/exec-cmd.h