2011-07-16 23:45:00 +00:00
|
|
|
#ifndef _SELECT_H_
|
|
|
|
#define _SELECT_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#define FLEN 13
|
|
|
|
|
2011-12-23 00:07:48 +00:00
|
|
|
int getFiles(char files[][FLEN], uint8_t count, uint16_t skip, const char *ext);
|
|
|
|
int selectFile(char *filename, const char *extension);
|
2011-07-16 23:45:00 +00:00
|
|
|
|
|
|
|
#endif
|