/* GLIB - Library of useful routines for C programming * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include #include #include #include #include #include #include #include #include "glib.h" const guint glib_major_version = GLIB_MAJOR_VERSION; const guint glib_minor_version = GLIB_MINOR_VERSION; const guint glib_micro_version = GLIB_MICRO_VERSION; extern char* g_vsprintf (const gchar *fmt, va_list *args, va_list *args2); gint g_snprintf (gchar *str, gulong n, gchar const *fmt, ...) { #ifdef HAVE_VSNPRINTF va_list args; gint retval; va_start (args, fmt); retval = vsnprintf (str, n, fmt, args); va_end (args); return retval; #else gchar *printed; va_list args, args2; va_start (args, fmt); va_start (args2, fmt); printed = g_vsprintf (fmt, &args, &args2); strncpy (str, printed, n); str[n-1] = '\0'; va_end (args2); va_end (args); return strlen (str); #endif } guint g_parse_debug_string (const gchar *string, GDebugKey *keys, guint nkeys) { guint i; guint result = 0; g_return_val_if_fail (string != NULL, 0); if (!g_strcasecmp (string, "all")) { for (i=0; i file_name && *base == '/') base--; len = (guint) 1 + base - file_name; base = g_new (gchar, len + 1); g_memmove (base, file_name, len); base[len] = 0; return base; } gchar* g_getcwd (void) { static gchar g_getcwd_buf[MAXPATHLEN + 1] = { 0 }; register gchar *dir; g_getcwd_buf[0] = 0; /* We don't use getcwd(3) on SUNOS, because, it does a popen("pwd") * and, if that wasn't bad enough, hangs in doing so. */ #if defined (sun) && !defined (__SVR4) dir = getwd (g_getcwd_buf); #else /* !sun */ dir = getcwd (g_getcwd_buf, MAXPATHLEN); #endif /* !sun */ if (!dir || g_getcwd_buf[0] == 0) { /* hm, we should probably g_error() out here... */ g_getcwd_buf[0] = '/'; g_getcwd_buf[1] = 0; } return g_getcwd_buf; } static gchar *g_tmp_dir = NULL; static gchar *g_user_name = NULL; static gchar *g_real_name = NULL; static gchar *g_home_dir = NULL; static void g_get_any_init (void) { if (!g_tmp_dir) { struct passwd *pw; g_tmp_dir = g_strdup (getenv ("TMPDIR")); if (!g_tmp_dir) g_tmp_dir = g_strdup (getenv ("TMP")); if (!g_tmp_dir) g_tmp_dir = g_strdup (getenv ("TEMP")); if (!g_tmp_dir) g_tmp_dir = g_strdup ("/tmp"); g_home_dir = g_strdup (getenv ("HOME")); setpwent (); pw = getpwuid (getuid ()); endpwent (); if (pw) { g_user_name = g_strdup (pw->pw_name); g_real_name = g_strdup (pw->pw_gecos); if (!g_home_dir) g_home_dir = g_strdup (pw->pw_dir); } } } gchar* g_get_user_name (void) { if (!g_tmp_dir) g_get_any_init (); return g_user_name; } gchar* g_get_real_name (void) { if (!g_tmp_dir) g_get_any_init (); return g_real_name; } gchar* g_get_home_dir (void) { if (!g_tmp_dir) g_get_any_init (); return g_home_dir; } gchar* g_get_tmp_dir (void) { if (!g_tmp_dir) g_get_any_init (); return g_tmp_dir; } static gchar *g_prgname = NULL; gchar* g_get_prgname (void) { return g_prgname; } void g_set_prgname (const gchar *prgname) { gchar *c = g_prgname; g_prgname = g_strdup (prgname); g_free (c); } guint g_direct_hash(gconstpointer v) { return GPOINTER_TO_UINT (v); } gint g_direct_equal(gconstpointer v, gconstpointer v2) { return GPOINTER_TO_UINT (v) == GPOINTER_TO_UINT (v2); } gint g_int_equal (gconstpointer v, gconstpointer v2) { return *((const gint*) v) == *((const gint*) v2); } guint g_int_hash (gconstpointer v) { return *(const gint*) v; }