summaryrefslogtreecommitdiff
path: root/src/user/app/shell/shell.h
blob: 050e70431bd10885374ca61e2c8848c001170f48 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once
#include <stdbool.h>
#include <stddef.h>

struct redir {
	const char *stdout;
	bool append;
};

int parse(char *s, char **argv, size_t argvlen, struct redir *redir);
void run_args(int argc, char **argv, struct redir *redir);