fish/fish_shell/fish_types.h

23 lines
299 B
C

//
// Created by Antoine Bartuccio on 14/05/2017.
//
#ifndef FISH_FISH_TYPES_H
#define FISH_FISH_TYPES_H
/* Custom types */
typedef struct {
char ** words;
int size;
} WordArray;
typedef struct {
char *PS1;
} Settings;
typedef int (builtinCommand) (WordArray*);
#endif //FISH_FISH_TYPES_H