12 lines
301 B
C
12 lines
301 B
C
#ifndef DEPLOYD_CMD_H_
|
|
#define DEPLOYD_CMD_H_
|
|
|
|
#include "conf.h"
|
|
|
|
#include "def.h"
|
|
|
|
int dp_parse_line(char *line, char *argv[], int max_args);
|
|
size_t dp_read_line(const char *prompt, char *input, size_t input_size);
|
|
uint64_t dp_parse_duration_to_seconds(const char *str);
|
|
|
|
#endif /* DEPLOYD_CMD_H_ */
|