1
0
mirror of https://gitlab.com/klmp200/fish.git synced 2024-09-28 13:58:05 +00:00
fish/fish_shell/fish_globbing.h
2017-05-15 16:34:40 +02:00

15 lines
335 B
C

#ifndef FISH_FISH_GLOBBING_H
#define FISH_FISH_GLOBBING_H
typedef struct dirent dirent;
WordArray * fishExpand(WordArray* wordArray);
WordArray* getFiles(char* path);
/*char1 is a string with characters such as '*', '.' or '?' having special meanings*/
int comparator(char* string1, char* string2);
#endif //FISH_FISH_GLOBBING_H