userspace/sh/builtin.h
Mark 4c2741e015 Rewrite sh for PoC pipe support, add simple grep
"PoC" is rather for "Piece of Crap" here
2020-07-02 12:49:04 +03:00

8 lines
137 B
C

#pragma once
struct cmd_unit;
typedef int (*builtin_func_t) (const struct cmd_unit *);
builtin_func_t builtin_find(const char *name);