fish/fish_shell/fish_globbing.h

19 lines
419 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
WordArray* getFiles(char* path);
/*char1 is a string with characters such as '*', '.' or '?' having special meanings*/
int comparator(char* string1, char* string2);
2017-05-15 12:32:41 +00:00
2017-05-15 17:10:46 +00:00
WordList* expandInDir(char*, char*);
2017-05-16 05:32:19 +00:00
WordList* recursiveExpand(char* completePath);
2017-05-15 12:32:41 +00:00
#endif //FISH_FISH_GLOBBING_H