summaryrefslogtreecommitdiff
path: root/src/user/app/shell/shell.h
blob: 4c7eeb380998cf754ed7c0ac7a98c5fedd989192 (plain)
1
2
3
4
5
6
7
8
9
10
#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);