Files
RedBear-OS/tests/dirent/main.c
T
Tibor Nagy 4381bb2a22 tests: Remove redundant return statements
When the execution reaches the end of the main functions, they implicitly return a successful status.
2019-02-20 21:09:03 +01:00

42 lines
871 B
C

#include <dirent.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
int main(void) {
printf("%lu\n", sizeof(struct dirent));
DIR* dir = opendir("example_dir/");
if (dir == NULL) {
perror("opendir");
return EXIT_FAILURE;
}
struct dirent* entry;
//int tell = 0;
for (char counter = 0; (entry = readdir(dir)); counter += 1) {
puts(entry->d_name);
//if (counter == 4) {
// tell = telldir(dir);
//}
}
puts("--- Testing rewind ---");
rewinddir(dir);
entry = readdir(dir);
puts(entry->d_name);
// puts("--- Testing seek ---");
// // Why this doesn't cause it to actually go to the 4th element is beyond
// // me, but glibc acts the same way.
// seekdir(dir, tell);
// entry = readdir(dir);
// puts(entry->d_name);
closedir(dir);
}