aboutsummaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-04-02 09:53:46 +0000
committerGuy Harris <guy@alum.mit.edu>2001-04-02 09:53:46 +0000
commit65dc46932669c4fb95360156a863294f51963fa8 (patch)
tree58d2550d39940bee832d3438d649188b1294cd58 /util.h
parentd203637adecc1783ce9705a33e7af6e88778f5e2 (diff)
"get_home_dir()", in "epan/filesystem.c", uses
"find_last_pathname_separator()" on Win32; move the other pathname manipulation routines from "util.c" into "epan/filesystem.c". Remove from "util.h" the declarations of routines not defined in "util.c", and put them into "epan/filesystem.h" if they're not already there. Adjust #includes to make the above work. svn path=/trunk/; revision=3241
Diffstat (limited to 'util.h')
-rw-r--r--util.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/util.h b/util.h
index a129387c45..4d52866e15 100644
--- a/util.h
+++ b/util.h
@@ -1,7 +1,7 @@
/* util.h
* Utility definitions
*
- * $Id: util.h,v 1.22 2000/10/11 07:35:00 guy Exp $
+ * $Id: util.h,v 1.23 2001/04/02 09:53:43 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -64,10 +64,6 @@ char *get_dirname(char *);
int create_tempfile(char *, int, const char *);
-/* Returns the user's home directory, via the HOME environment
- * variable, or a default directory if HOME is not set */
-const char* get_home_dir(void);
-
/*
* Collect command-line arguments as a string consisting of the arguments,
* separated by spaces.