some error checking

This commit is contained in:
Elliott Pardee 2015-06-12 04:23:06 -04:00
parent 10241092fa
commit 6ce020240b

View File

@ -2,6 +2,7 @@
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
static int process(char *name);
@ -14,11 +15,16 @@ process(char *name)
ts.tv_sec = 0;
ts.tv_nsec = 10 * 1000000;
if (file == 0) {
if (access(file, F_OK) = -1) {
fprintf(stderr, "[err] no such file or directory\n");
return ENOENT;
}
if (access(file, R_OK) = -1) {
fprintf(stderr, "[err] can't read file, permission denied\n");
return EACCES;
}
int x;
while ((x = fgetc(file)) != EOF) {
printf("%c", x);