blob: 76dc7b1ef993bf37453f393d8aa28d0bf48bb2e1 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef DIRBROWSER_H
#define DIRBROWSER_H
#include <dirent.h>
char * newt_select_file(char * title, char * text, char * dirname,
int (*filterfunc)(char *, struct dirent *));
#endif
|