tiny-shell 0.2
A mini shell project aiming to gain knowledge about Win32 and Linux API
Loading...
Searching...
No Matches
launch_executable.c
Go to the documentation of this file.
1#include "launch_executable.h"
2#include <stdbool.h>
3
5 bool result = launch_executable(args);
6 return result ? RUN_OK : RUN_FAILED;
7}
enum run_result run_launch_executable(const struct args args)
Run the executable foreground.
bool launch_executable(const struct args args)
Launch the executable.
run_result
Result of the execution of a command line.
Definition res.h:6
@ RUN_OK
Definition res.h:7
@ RUN_FAILED
Definition res.h:9
Result after parsing an arbitrary string.
Definition args.h:10