summaryrefslogtreecommitdiff
path: root/src/cmd/shell/builtins.h
blob: 1e422bb3afe4446f0cc017d4b08cb763b0744056 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once
#include <camellia/syscalls.h>
#include <stdbool.h>

struct builtin {
	const char *name;
	void (*fn)(int argc, char **argv);
};

extern struct builtin builtins[];