From 4fe7a3740f967c868f91aa05868300e95af24727 Mon Sep 17 00:00:00 2001
From: oga
Date: Tue, 15 Apr 2008 20:26:50 +0000
Subject: Kill dirent_isdir() and dirent_islink() nothing used them since the
 new parser went in.

ok okan.
---
 calmwm.h |  5 +----
 util.c   | 30 +-----------------------------
 2 files changed, 2 insertions(+), 33 deletions(-)

diff --git a/calmwm.h b/calmwm.h
index a0e1313..ed2e3f4 100644
--- a/calmwm.h
+++ b/calmwm.h
@@ -15,7 +15,7 @@
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  *
- * $Id: calmwm.h,v 1.30 2008/04/15 20:24:41 oga Exp $
+ * $Id: calmwm.h,v 1.31 2008/04/15 20:26:50 oga Exp $
  */
 
 #ifndef _CALMWM_H_
@@ -400,9 +400,6 @@ void			 xu_setstate(struct client_ctx *, int);
 int			 xu_getstate(struct client_ctx *, int *);
 void			 xu_key_grab_keycode(Window, int, int);
 
-int			 dirent_exists(char *);
-int			 dirent_isdir(char *);
-int			 dirent_islink(char *);
 int			 u_spawn(char *);
 void			 exec_wm(char *);
 
diff --git a/util.c b/util.c
index d8cd7fa..4b10d72 100644
--- a/util.c
+++ b/util.c
@@ -15,7 +15,7 @@
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  *
- * $Id: util.c,v 1.6 2008/04/15 20:24:41 oga Exp $
+ * $Id: util.c,v 1.7 2008/04/15 20:26:50 oga Exp $
  */
 
 #include "headers.h"
@@ -64,31 +64,3 @@ exec_wm(char *argstr)
 	execvp(args[0], args);
 	warn(args[0]);
 }
-
-int
-dirent_isdir(char *filename)
-{
-	struct stat buffer;
-	int return_value;
-
-	return_value = stat(filename, &buffer);
-
-	if (return_value == -1)
-		return (0);
-	else
-		return (S_ISDIR(buffer.st_mode));
-}
-
-int
-dirent_islink(char *filename)
-{
-	struct stat buffer;
-	int return_value;
-
-	return_value = lstat(filename, &buffer);
-
-	if (return_value == -1)
-		return (0);
-	else
-		return (S_ISLNK(buffer.st_mode));
-}
-- 
cgit v1.2.3-2-gb3c3