mirror of
https://gitlab.com/klmp200/fish.git
synced 2024-11-14 04:43:20 +00:00
17 lines
371 B
C
17 lines
371 B
C
#ifndef FISH_FISH_GLOBBING_H
|
|
#define FISH_FISH_GLOBBING_H
|
|
|
|
typedef struct dirent dirent;
|
|
|
|
|
|
WordList * fishExpand(WordList *wordArray);
|
|
|
|
WordArray* getFiles(char* path);
|
|
|
|
/*char1 is a string with characters such as '*', '.' or '?' having special meanings*/
|
|
int comparator(char* string1, char* string2);
|
|
|
|
WordList* expandInDir(char*, char*);
|
|
|
|
#endif //FISH_FISH_GLOBBING_H
|