1
0
mirror of https://gitlab.com/klmp200/fish.git synced 2025-07-09 03:15:17 +00:00
fish/fish_shell/fish_globbing.h
2017-05-29 15:19:52 +02:00

18 lines
377 B
C

#ifndef FISH_FISH_GLOBBING_H
#define FISH_FISH_GLOBBING_H
typedef struct dirent dirent;
WordList* fishExpand(WordList* wordArray);
WordList* getFiles(char* path, char* wildcardedString);
WordList* expandWord(char* word);
int wildcardedStringMatches(char* string1, char* string2);
WordList* splitWordIntoList(char* string, char splitchar);
#endif //FISH_FISH_GLOBBING_H