root / Whitix / branches / hybrid / user / burn / builtins.h

Revision 7, 320 bytes (checked in by root, 9 months ago)

Rework build system, fix linker code.

Line 
1#ifndef BUILTINS_H
2#define BUILTINS_H
3
4/* Used by the shell to execute a command that cannot be found
5   in the builtins */
6int BtInExec(char* args[]);
7
8struct CmdTable
9{
10        char* command;
11        int (*function)(char* args[]);
12};
13
14extern struct CmdTable btTable[];
15
16#define PATH_MAX 2048
17extern char currPath[PATH_MAX];
18
19#endif
Note: See TracBrowser for help on using the browser.