2000-12-19 14:05:04 +00:00
|
|
|
/* -*- mode: c; style: linux -*- */
|
|
|
|
|
|
|
|
/* util.h
|
2001-01-12 14:40:26 +00:00
|
|
|
* Copyright (C) 2000-2001 Ximian, Inc.
|
2000-12-19 14:05:04 +00:00
|
|
|
*
|
2001-01-12 15:03:02 +00:00
|
|
|
* Written by Bradford Hovinen (hovinen@ximian.com)
|
2000-12-19 14:05:04 +00:00
|
|
|
*
|
|
|
|
* 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, 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
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include <glib.h>
|
|
|
|
|
2001-04-27 00:32:19 +00:00
|
|
|
/* Uncomment this if you want debugs: */
|
2001-07-17 22:14:19 +00:00
|
|
|
#define DEBUG_ME_MORE
|
2001-04-27 00:32:19 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_ME_MORE
|
|
|
|
# ifdef __GNUC__
|
|
|
|
# define DEBUG_MSG(str, args...) \
|
2001-04-25 00:57:59 +00:00
|
|
|
g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, "(%d:%s) " str, \
|
|
|
|
getpid (), __FUNCTION__ , ## args)
|
2001-04-27 00:32:19 +00:00
|
|
|
# else
|
|
|
|
# define DEBUG_MSG(str, args...)
|
|
|
|
# endif
|
2001-04-25 00:57:59 +00:00
|
|
|
#else
|
2001-04-27 00:32:19 +00:00
|
|
|
/* This was redefined here because it was messing with the frontend->backend
|
|
|
|
* talk. Arturo */
|
2001-04-25 00:57:59 +00:00
|
|
|
# define DEBUG_MSG(str, args...)
|
|
|
|
#endif
|
|
|
|
|
2000-12-19 14:05:04 +00:00
|
|
|
gboolean extract_number (char **str, int *number, int digits);
|
|
|
|
struct tm *parse_date (char *str);
|
2001-08-20 15:47:57 +00:00
|
|
|
struct tm *dup_date (const struct tm *date);
|
2000-12-19 14:05:04 +00:00
|
|
|
|
|
|
|
#endif /* __UTIL_H */
|