10 lines
248 B
C++
10 lines
248 B
C++
#pragma once
|
|
|
|
/**
|
|
* @brief execute_cmd Execute shell command
|
|
* @param cmd Command line
|
|
* @param res Pointer to variable that will contain command console output (stdout)
|
|
* @return Process exit code
|
|
*/
|
|
int execute_cmd(char * cmd, char ** res);
|