blob: ed2e9b16585be9fffa8b1e92faaf699623a12f53 [file] [log] [blame]
int access_rights(string user, string file) {
if(user == "notstrom" && file == "aquarium.c")
return 1;
return 0;
}