/* util.h * Utility definitions * * $Id: util.h,v 1.6 2006/04/29 07:58:35 bchiara Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs * Copyright 1998 Gerald Combs * * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef __UTIL_H__ #define __UTIL_H__ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /* 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); /* gets a list containing the names of available interfaces. Returns NULL * if there is an error, putting also an error message into err_str. * The returned list MUST be freed with interface_list_free() */ GList *interface_list_create(GString *err_str); void interface_list_free(GList * if_list); char *safe_strncpy (char *dst, const char *src, size_t maxlen); char *safe_strncat (char *dst, const char *src, size_t maxlen); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __UTIL_H__ */