]>
Commit | Line | Data |
---|---|---|
c8f4eac4 | 1 | /* |
ef57eb7b | 2 | * Copyright (C) 1996-2016 The Squid Software Foundation and contributors |
c8f4eac4 | 3 | * |
bbc27441 AJ |
4 | * Squid software is distributed under GPLv2+ license and includes |
5 | * contributions from numerous individuals and organizations. | |
6 | * Please see the COPYING and CONTRIBUTORS files for details. | |
c8f4eac4 | 7 | */ |
8 | ||
bbc27441 AJ |
9 | /* DEBUG: none Linked list functions (deprecated) */ |
10 | ||
11 | #ifndef SQUID_SQUIDLIST_H_ | |
12 | #define SQUID_SQUIDLIST_H_ | |
13 | ||
1b2f0924 FC |
14 | class link_list |
15 | { | |
13501b47 | 16 | public: |
41c97755 FC |
17 | void *ptr; |
18 | link_list *next; | |
19 | }; | |
c8f4eac4 | 20 | |
8a648e8d FC |
21 | void linklistPush(link_list **, void *); |
22 | void *linklistShift(link_list **); | |
c8f4eac4 | 23 | |
41c97755 | 24 | #endif /* SQUID_SQUIDLIST_H_ */ |
f53969cc | 25 |