mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-11-28 07:21:21 +08:00
14 lines
227 B
C
14 lines
227 B
C
#ifndef __PARSE_H
|
|
#define __PARSE_H
|
|
|
|
#include <jansson.h>
|
|
|
|
#include "command.h"
|
|
|
|
void free_strings(char **p);
|
|
void free_command(command_t *p);
|
|
void print_command(command_t *cmd);
|
|
command_t *parse_command(json_t *root);
|
|
|
|
#endif
|