luksrku/exec.h
2016-09-22 20:40:58 +02:00

17 lines
343 B
C

#ifndef __EXEC_H__
#define __EXEC_H__
#include <stdbool.h>
struct runresult_t {
bool success;
int returncode;
};
/*************** AUTO GENERATED SECTION FOLLOWS ***************/
void argv_dump(const char **argv);
struct runresult_t exec_command(const char **argv);
/*************** AUTO GENERATED SECTION ENDS ***************/
#endif