From d7844e59f766ee95a04ecf00d1e26aca974e9229 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Tue, 26 Jan 2010 20:38:05 +0100 Subject: Split out debugging and helper function to utility.c --- src/utility.h | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/utility.h (limited to 'src/utility.h') diff --git a/src/utility.h b/src/utility.h new file mode 100644 index 0000000..cfb3091 --- /dev/null +++ b/src/utility.h @@ -0,0 +1,37 @@ +/** + * utility.h + * Debugging and helper function definitions. + * + * Copyright (C) 2009-2010 Nikias Bassen + * Copyright (C) 2009-2010 Martin Szulecki + * + * Licensed under the GNU General Public License Version 2 + * + * 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 profile. + * + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + * USA + */ + +#ifndef UTILITY_H +#define UTILITY_H +#include + +/* debug */ +void set_debug(gboolean debug); +void debug_printf(const char *format, ...); + +/* helper */ +gboolean elapsed_ms(struct timeval *tv, guint ms); + +#endif -- cgit v1.1-32-gdbae