branches/gmyth-0.1b/src/gmyth_util.h
author rosfran
Fri Feb 09 20:42:28 2007 +0000 (2007-02-09)
branchtrunk
changeset 346 4ba962630375
permissions -rw-r--r--
[svn r348] Fixes.
     1 /**
     2 * GMyth Library
     3 *
     4 * @file gmyth/gmyth_util.h
     5 * 
     6 * @brief <p> This component provides utility functions.
     7 * 
     8 * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
     9 * @author Hallyson Luiz de Morais Melo <hallyson.melo@indt.org.br>
    10 *
    11 *//*
    12 * 
    13 * This program is free software; you can redistribute it and/or modify
    14 * it under the terms of the GNU Lesser General Public License as published by
    15 * the Free Software Foundation; either version 2 of the License, or
    16 * (at your option) any later version.
    17 *
    18 * This program is distributed in the hope that it will be useful,
    19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
    20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    21 * GNU General Public License for more details.
    22 *
    23 * You should have received a copy of the GNU Lesser General Public License
    24 * along with this program; if not, write to the Free Software
    25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    26 */
    27 
    28 #ifndef GMYTH_UTIL_H_
    29 #define GMYTH_UTIL_H_
    30 
    31 #include <time.h>
    32 #include <glib.h>
    33 
    34 #include "gmyth_stringlist.h"
    35 #include "gmyth_backendinfo.h"
    36 
    37 G_BEGIN_DECLS
    38 
    39 GString 		*gmyth_util_time_to_isoformat(time_t time_value);
    40 GString 		*gmyth_util_time_to_string   (time_t time_value);
    41 time_t      gmyth_util_string_to_time   (GString* time_str);
    42 gint64     	gmyth_util_decode_long_long (GMythStringList *strlist, 
    43                                          guint offset);
    44 
    45 gchar* 			gmyth_util_time_to_isoformat_from_time_val_fmt ( const gchar *fmt_string, const GTimeVal* time_val );
    46 
    47 GTimeVal		*gmyth_util_string_to_time_val_fmt ( const gchar *fmt_string, const gchar* time_str );
    48 
    49 GTimeVal		*gmyth_util_string_to_time_val ( const gchar* time_str );
    50 
    51 gchar 			*gmyth_util_time_to_isoformat_from_time_val( const GTimeVal *time);
    52 gchar			*gmyth_util_time_to_mythformat_from_time_val ( const GTimeVal* time );
    53 
    54 gchar				*gmyth_util_time_to_string_only_date ( const GTimeVal* time );
    55 
    56 gchar				*gmyth_util_time_to_string_only_time ( const GTimeVal* time );
    57 
    58 gchar				*gmyth_util_time_to_string_from_time_val ( const GTimeVal *time_val );
    59 
    60 struct tm		*gmyth_util_time_val_to_date ( const GTimeVal* time );
    61 
    62 gboolean 		gmyth_util_file_exists (GMythBackendInfo *backend_info, const gchar* filename);
    63 
    64 G_END_DECLS
    65 	
    66 #endif /*GMYTH_UTIL_H_*/