Fix a few 'gcc -fanalyzer' warnings.
[pwmd.git] / src / util-slist.h
blobd482441c0043f8c37a27c8959efdb2874ae92bc1
1 /*
2 Copyright (C) 2012-2023 Ben Kibbey <bjk@luxsci.net>
4 This file is part of pwmd.
6 Pwmd is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License version 2 as
8 published by the Free Software Foundation.
10 Pwmd is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with Pwmd. If not, see <http://www.gnu.org/licenses/>.
18 #ifndef UTIL_SLIST_H
19 #define UTIL_SLIST_H
21 struct slist_s
23 void *data;
24 struct slist_s *next;
27 unsigned slist_length (struct slist_s *list);
28 void *slist_nth_data (struct slist_s *list, unsigned n);
29 struct slist_s *slist_append (struct slist_s *list, void *data);
30 void slist_free (struct slist_s *list);
31 struct slist_s *slist_remove (struct slist_s *list, void *data);
33 #endif