Files
RedBear-OS/tests/unistd/access.c
T
2018-07-30 21:08:44 +02:00

15 lines
428 B
C

#include <stdio.h>
#include <unistd.h>
int main() {
if (access("example_dir/1-never-gonna-give-you-up", R_OK | W_OK)) {
perror("access");
return 1;
}
if (!access("example_dir/1-never-gonna-give-you-up", X_OK)) {
puts("Accessing a file with X_OK worked even though it... probably... shouldn't?");
puts("Please run `chmod 644 example_dir/*` and try again.");
return 1;
}
}