hit it with the knf stick.

This commit is contained in:
oga
2008-04-15 20:24:41 +00:00
parent 3a94c57afc
commit 75182c6d9c
20 changed files with 441 additions and 432 deletions

38
util.c
View File

@ -65,28 +65,30 @@ exec_wm(char *argstr)
warn(args[0]);
}
int dirent_isdir(char *filename) {
struct stat buffer;
int return_value;
int
dirent_isdir(char *filename)
{
struct stat buffer;
int return_value;
return_value = stat(filename, &buffer);
return_value = stat(filename, &buffer);
if(return_value == -1)
return 0;
else
return S_ISDIR(buffer.st_mode);
if (return_value == -1)
return (0);
else
return (S_ISDIR(buffer.st_mode));
}
int dirent_islink(char *filename) {
struct stat buffer;
int return_value;
int
dirent_islink(char *filename)
{
struct stat buffer;
int return_value;
return_value = lstat(filename, &buffer);
return_value = lstat(filename, &buffer);
if(return_value == -1)
return 0;
else
return S_ISLNK(buffer.st_mode);
if (return_value == -1)
return (0);
else
return (S_ISLNK(buffer.st_mode));
}