diff options
author | Marius Halden <marius.h@lden.org> | 2016-11-19 10:32:18 +0100 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2016-11-19 10:32:18 +0100 |
commit | 08e1027c558a25b0b4f9410048c185e89c7b347a (patch) | |
tree | c9c80be4e9984bfc52835b0eac0895f6dfc81b14 /protocols/yahoo/yahoo_list.h | |
parent | ad5637a3fe2f8e25a88d910041791336e0c62271 (diff) | |
parent | 11d4123fe9a4d88d475bee6c623fb80af8fdbb0b (diff) |
Merge branch 'master' into patched-master
Diffstat (limited to 'protocols/yahoo/yahoo_list.h')
-rw-r--r-- | protocols/yahoo/yahoo_list.h | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/protocols/yahoo/yahoo_list.h b/protocols/yahoo/yahoo_list.h deleted file mode 100644 index 21bd4f06..00000000 --- a/protocols/yahoo/yahoo_list.h +++ /dev/null @@ -1,48 +0,0 @@ -/* - * yahoo_list.h: linked list routines - * - * Some code copyright (C) 2002-2004, Philip S Tellis <philip.tellis AT gmx.net> - * Other code copyright Meredydd Luff <meredydd AT everybuddy.com> - * - * 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 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - */ - -#ifndef __YLIST_H__ -#define __YLIST_H__ - -/* BitlBee already uses GLib so use it. */ - -typedef GList YList; - -#define y_list_append g_list_append -#define y_list_concat g_list_concat -#define y_list_copy g_list_copy -#define y_list_empty g_list_empty -#define y_list_find g_list_find -#define y_list_find_custom g_list_find_custom -#define y_list_foreach g_list_foreach -#define y_list_free g_list_free -#define y_list_free_1 g_list_free_1 -#define y_list_insert_sorted g_list_insert_sorted -#define y_list_length g_list_length -#define y_list_next g_list_next -#define y_list_nth g_list_nth -#define y_list_prepend g_list_prepend -#define y_list_remove g_list_remove -#define y_list_remove_link g_list_remove_link -#define y_list_singleton g_list_singleton - -#endif |