mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 05:05:20 -05:00
15 lines
281 B
C
15 lines
281 B
C
|
|
#include <dirent.h>
|
|
|
|
#define SIMULATOR_ARCHOS_ROOT "archos"
|
|
|
|
DIR *x11_opendir(char *name)
|
|
{
|
|
char buffer[256]; /* sufficiently big */
|
|
|
|
if(name[0] == '/') {
|
|
sprintf(buffer, "%s/%s", SIMULATOR_ARCHOS_ROOT, name);
|
|
return opendir(buffer);
|
|
}
|
|
return opendir(name);
|
|
}
|