diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-04-02 09:53:46 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-04-02 09:53:46 +0000 |
commit | 65dc46932669c4fb95360156a863294f51963fa8 (patch) | |
tree | 58d2550d39940bee832d3438d649188b1294cd58 /util.h | |
parent | d203637adecc1783ce9705a33e7af6e88778f5e2 (diff) | |
download | wireshark-65dc46932669c4fb95360156a863294f51963fa8.tar.gz wireshark-65dc46932669c4fb95360156a863294f51963fa8.tar.bz2 wireshark-65dc46932669c4fb95360156a863294f51963fa8.zip |
"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.h | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -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. |