mirror of
https://gitlab.com/klmp200/fish.git
synced 2024-11-14 12:53:20 +00:00
25 lines
405 B
C
25 lines
405 B
C
|
//
|
||
|
// Created by Antoine Bartuccio on 14/05/2017.
|
||
|
//
|
||
|
|
||
|
#ifndef FISH_FISH_COMMANDS_H
|
||
|
#define FISH_FISH_COMMANDS_H
|
||
|
|
||
|
#include "fish_core.h"
|
||
|
|
||
|
/* Getters */
|
||
|
|
||
|
char ** getBuiltinCommandsStr ();
|
||
|
builtinCommand **getBuiltinCommands();
|
||
|
int getNbBuiltins();
|
||
|
|
||
|
/* Built in shell commands */
|
||
|
|
||
|
int fishCd(WordArray * args);
|
||
|
|
||
|
int fishHelp(WordArray * args);
|
||
|
|
||
|
int fishExit(WordArray * args);
|
||
|
|
||
|
#endif //FISH_FISH_COMMANDS_H
|