diff options
Diffstat (limited to 'src/lib/strdict.h')
-rw-r--r-- | src/lib/strdict.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/lib/strdict.h b/src/lib/strdict.h deleted file mode 100644 index 9a7dc1a..0000000 --- a/src/lib/strdict.h +++ /dev/null @@ -1,35 +0,0 @@ -/******************************************************************************* - * libproxy - A library for proxy configuration - * Copyright (C) 2006 Nathaniel McCallum <nathaniel@natemccallum.com> - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - ******************************************************************************/ - -#include <stdbool.h> - -typedef void (*pxStrDictItemCallback)(void *); -typedef void (*pxStrDictForeachCallback)(const char *, void *, void *); - -typedef struct _pxStrDict pxStrDict; - -pxStrDict *px_strdict_new(pxStrDictItemCallback free); - -bool px_strdict_set(pxStrDict *self, const char *key, void *value); - -const void *px_strdict_get(pxStrDict *self, const char *key); - -void px_strdict_foreach(pxStrDict *self, pxStrDictForeachCallback *cb, void *arg); - -void px_strdict_free(pxStrDict *self); |