]> git.proxmox.com Git - mirror_frr.git/blame - pceplib/test/pcep_utils_ordered_list_test.h
Merge pull request #12798 from donaldsharp/rib_match_multicast
[mirror_frr.git] / pceplib / test / pcep_utils_ordered_list_test.h
CommitLineData
acddc0ed 1// SPDX-License-Identifier: LGPL-2.1-or-later
74971473
JG
2/*
3 * This file is part of the PCEPlib, a PCEP protocol library.
4 *
5 * Copyright (C) 2020 Volta Networks https://voltanet.io/
6 *
74971473
JG
7 * Author : Javier Garcia <javier.garcia@voltanet.io>
8 *
9 */
10
11/*
12 * Timer definitions to be used internally by the pcep_timers library.
13 */
14
15#ifndef PCEP_UTILS_ORDERED_LIST_TEST_H_
16#define PCEP_UTILS_ORDERED_LIST_TEST_H_
17
18void test_empty_list(void);
19void test_null_list_handle(void);
20void test_add_to_list(void);
21void test_find(void);
22void test_remove_first_node(void);
23void test_remove_first_node_equals(void);
24void test_remove_node(void);
25int node_data_compare(void *list_entry, void *new_entry);
26
27#endif /* PCEPTIMERINTERNALS_H_ */