Select Git revision
Forked from
sce213ta / mysh-1
Source project has a limited visibility.
-
Jaewon Choi authoredJaewon Choi authored
utils.h 344 B
#ifndef MYSH_UTILS_H_
#define MYSH_UTILS_H_
#include "commands.h"
void mysh_parse_command(const char* command,
int* n_commands,
struct single_command (*commands)[512]);
void parse_single_command(const char* command,
int *argc, char*** argv);
#endif // MYSH_UTILS_H_