~ubuntu-branches/ubuntu/oneiric/squid3/oneiric-security

« back to all changes in this revision

Viewing changes to libltdl/libltdl/slist.h

  • Committer: Bazaar Package Importer
  • Author(s): Mahyuddin Susanto
  • Date: 2011-02-15 18:46:13 UTC
  • mfrom: (21.2.4 sid)
  • Revision ID: james.westby@ubuntu.com-20110215184613-1u3dh5sz4i055flk
Tags: 3.1.10-1ubuntu1
* Merge from debian unstable. (LP: #719283)  Remaining changes:
  - debian/patches/18-fix-ftbfs-binutils-gold.dpatch: Add library linker into
    LIBS instead to LDFLAGS to fixing FTBFS binutils-gold.
* Drop Ubuntu configuration for ufw which landed in Debian and sync it: 
  - debian/squid3.ufw.profile.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* slist.h -- generalised singly linked lists
2
2
 
3
 
   Copyright (C) 2000, 2004 Free Software Foundation, Inc.
 
3
   Copyright (C) 2000, 2004, 2009 Free Software Foundation, Inc.
4
4
   Written by Gary V. Vaughan, 2000
5
5
 
6
6
   NOTE: The canonical source of this file is maintained with the
48
48
#  define LT_SCOPE
49
49
#endif
50
50
 
 
51
#include <stddef.h>
 
52
 
51
53
#if defined(__cplusplus)
52
54
extern "C" {
53
55
#endif
65
67
LT_SCOPE SList *slist_cons      (SList *item, SList *slist);
66
68
 
67
69
LT_SCOPE SList *slist_delete    (SList *slist, void (*delete_fct) (void *item));
68
 
LT_SCOPE void * slist_remove    (SList **phead, SListCallback *find,
 
70
LT_SCOPE SList *slist_remove    (SList **phead, SListCallback *find,
69
71
                                 void *matchdata);
70
72
LT_SCOPE SList *slist_reverse   (SList *slist);
71
73
LT_SCOPE SList *slist_sort      (SList *slist, SListCompare *compare,