You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-05 04:50:35 +03:00
27 lines
521 B
C
27 lines
521 B
C
/*
|
|
* container_list_sl.h
|
|
* $Id: container_list_ssll.h,v 1.3 2004/09/14 02:29:16 rstory Exp $
|
|
*
|
|
*/
|
|
#ifndef NETSNMP_CONTAINER_SSLL_H
|
|
#define NETSNMP_CONTAINER_SSLL_H
|
|
|
|
|
|
#include <net-snmp/library/container.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
netsnmp_container *netsnmp_container_get_sorted_singly_linked_list(void);
|
|
netsnmp_container *netsnmp_container_get_singly_linked_list(int fifo);
|
|
|
|
void netsnmp_container_ssll_init(void);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /** NETSNMP_CONTAINER_SSLL_H */
|