/* Misc routines * * (c) 2000 Eazel, Inc. * (c) 2001,2002 George Lebl * * 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. */ #ifndef VE_MISC_H #define VE_MISC_H #include #include #include #include #include #include char ** ve_split (const char *s); char * ve_first_word (const char *s); char * ve_rest (const char *s); char ** ve_vector_merge (char * const *v1, char * const *v2); int ve_vector_len (char * const *v); /* Gets the first existing command out of a list separated by semicolons */ char * ve_get_first_working_command (const char *list, gboolean only_existance); gboolean ve_bool_equal (gboolean a, gboolean b); gboolean ve_is_string_in_list (const GList *list, const char *string); gboolean ve_is_string_in_list_case_no_locale (const GList *list, const char *string); #define ve_string_empty(x) ((x)==NULL||(x)[0]=='\0') #define ve_sure_string(x) ((x)!=NULL?(x):"") /* Find a file using the specified list of directories, an absolute path is * just checked, whereas a relative path is search in the given directories, */ char * ve_find_file_simple (const char *filename, const GList *directories); /* Find a file using the specified list of directories, an absolute path is * just checked, whereas a relative path is search in the given directories, * gnome_datadir, g_get_prgname() subdirectory, in GNOME_PATH * under /share/ and /share/ */ char * ve_find_file (const char *filename, const GList *directories); /* These two functions will ALWAYS return a non-NULL string, * if there is an error, they return the unconverted string */ char * ve_locale_to_utf8 (const char *str); char * ve_locale_from_utf8 (const char *str); /* These two functions will ALWAYS return a non-NULL string, * if there is an error, they return the unconverted string */ char * ve_filename_to_utf8 (const char *str); char * ve_filename_from_utf8 (const char *str); /* works with utf-8 strings and always returns something */ char * ve_strftime (struct tm *the_tm, const char *format); /* function which doesn't stop on signals */ pid_t ve_waitpid_no_signal (pid_t pid, int *status, int options); /* Testing for existance of a certain locale */ gboolean ve_locale_exists (const char *loc); /* just like gnome_i18n_get_language_list (in fact if you link to gnome it uses that */ const GList * ve_i18n_get_language_list (const gchar *category_name); char * ve_find_prog_in_path (const char *prog, const char *path); gboolean ve_is_prog_in_path (const char *prog, const char *path); char *ve_shell_quote_filename (const char *name); #define VE_IGNORE_EINTR(expr) \ do { \ errno = 0; \ expr; \ } while G_UNLIKELY (errno == EINTR); #endif /* VE_MISC_H */