summaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd@luon.net>2007-03-30 10:44:23 +0000
committerSjoerd Simons <sjoerd@luon.net>2007-03-30 10:44:23 +0000
commitcfcb3fca3d3517d6e086c7780f362e272867385a (patch)
tree6e365dadc92cab79268edbdce21a050fecd9c46d /src/util.c
parenteb7916d33c0e1ffc23c075c55e844f5556556c61 (diff)
downloadtelepathy-salut-cfcb3fca3d3517d6e086c7780f362e272867385a.tar.gz
Megapatch to port to telepathy-glib
20070330104423-93b9a-d86c98af93de306470bd26138e7ed05e08b60dd6.gz
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/util.c b/src/util.c
deleted file mode 100644
index 1991e9d4..00000000
--- a/src/util.c
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * util.c - Source for Gabble utility functions
- * Copyright (C) 2006 Collabora Ltd.
- * Copyright (C) 2006 Nokia Corporation
- * @author Robert McQueen <robert.mcqueen@collabora.co.uk>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#include <glib.h>
-#include <string.h>
-
-#include "util.h"
-
-/* extend a pointer by an offset, provided the offset is not 0 */
-gpointer
-mixin_offset_cast (gpointer instance, guint offset)
-{
- g_return_val_if_fail (offset != 0, NULL);
-
- return ((guchar *) instance + offset);
-}