Thumbnail file hits. Based on a patch from D Bera
[beagle.git] / glue / beagled-utils.c
blob3feec1d60f39effc5fda97dc3e0740c547b8cc3f
1 #include <unistd.h>
2 #include <dirent.h>
3 #include <string.h>
5 int
6 beagled_utils_readdir (void *dir, char *name)
8 struct dirent* entry = readdir ((DIR*) dir);
10 if (entry == NULL) {
11 name = NULL;
12 return -1;
15 strcpy (name, entry->d_name);
16 return 0;