1
0
mirror of https://gitlab.com/klmp200/fish.git synced 2024-06-15 03:01:57 +00:00
fish/fish_shell/fish_commands.h
klmp200 b550ebc9df Support des regex pour détecter les opérateurs logiques.
Split des mots si caractère spécial collé.
2017-05-20 16:25:00 +02:00

27 lines
436 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);
int fishKek(WordArray *args);
#endif //FISH_FISH_COMMANDS_H