root / Whitix / branches / hybrid / user / burn / builtins.h
| Revision 7, 320 bytes (checked in by root, 9 months ago) |
|---|
| 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 */ |
| 6 | int BtInExec(char* args[]); |
| 7 | |
| 8 | struct CmdTable |
| 9 | { |
| 10 | char* command; |
| 11 | int (*function)(char* args[]); |
| 12 | }; |
| 13 | |
| 14 | extern struct CmdTable btTable[]; |
| 15 | |
| 16 | #define PATH_MAX 2048 |
| 17 | extern char currPath[PATH_MAX]; |
| 18 | |
| 19 | #endif |
Note: See TracBrowser
for help on using the browser.
