fish/fish_shell/fish_globbing.h

14 lines
234 B
C
Raw Normal View History

2017-05-15 12:32:41 +00:00
#ifndef FISH_FISH_GLOBBING_H
#define FISH_FISH_GLOBBING_H
typedef struct dirent dirent;
2017-05-15 14:53:56 +00:00
WordList * fishExpand(WordList *wordArray);
2017-05-15 12:32:41 +00:00
WordList* getFiles(char* path);
2017-05-15 12:32:41 +00:00
2017-05-27 15:36:55 +00:00
WordList* expandWord(char* word);
2017-05-16 05:32:19 +00:00
2017-05-15 12:32:41 +00:00
#endif //FISH_FISH_GLOBBING_H