13 lines
286 B
C++
13 lines
286 B
C++
#ifndef SELECT_FILE_LIST_H
|
|
#define SELECT_FILE_LIST_H
|
|
|
|
namespace fallout {
|
|
|
|
int _compare(const void* a1, const void* a2);
|
|
char** _getFileList(const char* pattern, int* fileNameListLengthPtr);
|
|
void _freeFileList(char** fileList);
|
|
|
|
} // namespace fallout
|
|
|
|
#endif /* SELECT_FILE_LIST_H */
|