X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_llist.h;h=6214190fb3dbe8490fd1066e229c4e7ace2c66dd;hb=1122c8fd30065b5990a5b798b7bfd8891736def9;hp=603fc87b552178e342a336539da6de7fa7fe1b9e;hpb=7e5df1a2c6611bd4ac9fb8ac4b78106f9139ae6e;p=collectd.git diff --git a/src/utils_llist.h b/src/utils_llist.h index 603fc87b..6214190f 100644 --- a/src/utils_llist.h +++ b/src/utils_llist.h @@ -12,10 +12,9 @@ * ranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public Licence for more details. * - * You should have received a copy of the GNU General Public - * Licence along with this program; if not, write to the Free - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, - * USA. + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * Authors: * Florian Forster @@ -44,14 +43,18 @@ typedef struct llist_s llist_t; llist_t *llist_create (void); void llist_destroy (llist_t *l); -llentry_t *llentry_create (const char *key, void *value); +llentry_t *llentry_create (char *key, void *value); void llentry_destroy (llentry_t *e); void llist_append (llist_t *l, llentry_t *e); void llist_prepend (llist_t *l, llentry_t *e); void llist_remove (llist_t *l, llentry_t *e); +int llist_size (llist_t *l); + llentry_t *llist_search (llist_t *l, const char *key); +llentry_t *llist_search_custom (llist_t *l, + int (*compare) (llentry_t *, void *), void *user_data); llentry_t *llist_head (llist_t *l); llentry_t *llist_tail (llist_t *l);