summaryrefslogtreecommitdiff
path: root/include/xmlsec/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/xmlsec/list.h')
-rw-r--r--include/xmlsec/list.h170
1 files changed, 84 insertions, 86 deletions
diff --git a/include/xmlsec/list.h b/include/xmlsec/list.h
index fed98706..47fa6d8d 100644
--- a/include/xmlsec/list.h
+++ b/include/xmlsec/list.h
@@ -1,107 +1,105 @@
-/**
+/**
* XML Security Library (http://www.aleksey.com/xmlsec).
*
* List of pointers.
*
* This is free software; see Copyright file in the source
* distribution for preciese wording.
- *
+ *
* Copyright (C) 2002-2003 Aleksey Sanin <aleksey@aleksey.com>
*/
#ifndef __XMLSEC_LIST_H__
-#define __XMLSEC_LIST_H__
+#define __XMLSEC_LIST_H__
#ifdef __cplusplus
extern "C" {
-#endif /* __cplusplus */
+#endif /* __cplusplus */
#include <xmlsec/xmlsec.h>
#include <xmlsec/buffer.h>
-typedef const struct _xmlSecPtrListKlass xmlSecPtrListKlass,
- *xmlSecPtrListId;
-typedef struct _xmlSecPtrList xmlSecPtrList,
- *xmlSecPtrListPtr;
+typedef const struct _xmlSecPtrListKlass xmlSecPtrListKlass,
+ *xmlSecPtrListId;
+typedef struct _xmlSecPtrList xmlSecPtrList,
+ *xmlSecPtrListPtr;
/**
* xmlSecPtrList:
- * @id: the list items description.
- * @data: the list data.
- * @use: the current list size.
- * @max: the max (allocated) list size.
- * @allocMode: the memory allocation mode.
- *
+ * @id: the list items description.
+ * @data: the list data.
+ * @use: the current list size.
+ * @max: the max (allocated) list size.
+ * @allocMode: the memory allocation mode.
+ *
* The pointers list.
*/
struct _xmlSecPtrList {
- xmlSecPtrListId id;
+ xmlSecPtrListId id;
- xmlSecPtr* data;
- xmlSecSize use;
- xmlSecSize max;
- xmlSecAllocMode allocMode;
+ xmlSecPtr* data;
+ xmlSecSize use;
+ xmlSecSize max;
+ xmlSecAllocMode allocMode;
};
-XMLSEC_EXPORT void xmlSecPtrListSetDefaultAllocMode(xmlSecAllocMode defAllocMode,
- xmlSecSize defInitialSize);
-
-
-XMLSEC_EXPORT int xmlSecPtrListInitialize (xmlSecPtrListPtr list,
- xmlSecPtrListId id);
-XMLSEC_EXPORT void xmlSecPtrListFinalize (xmlSecPtrListPtr list);
-XMLSEC_EXPORT xmlSecPtrListPtr xmlSecPtrListCreate (xmlSecPtrListId id);
-XMLSEC_EXPORT void xmlSecPtrListDestroy (xmlSecPtrListPtr list);
-XMLSEC_EXPORT void xmlSecPtrListEmpty (xmlSecPtrListPtr list);
-
-XMLSEC_EXPORT int xmlSecPtrListCopy (xmlSecPtrListPtr dst,
- xmlSecPtrListPtr src);
-XMLSEC_EXPORT xmlSecPtrListPtr xmlSecPtrListDuplicate (xmlSecPtrListPtr list);
-
-XMLSEC_EXPORT xmlSecSize xmlSecPtrListGetSize (xmlSecPtrListPtr list);
-XMLSEC_EXPORT xmlSecPtr xmlSecPtrListGetItem (xmlSecPtrListPtr list,
- xmlSecSize pos);
-XMLSEC_EXPORT int xmlSecPtrListAdd (xmlSecPtrListPtr list,
- xmlSecPtr item);
-XMLSEC_EXPORT int xmlSecPtrListSet (xmlSecPtrListPtr list,
- xmlSecPtr item,
- xmlSecSize pos);
-XMLSEC_EXPORT int xmlSecPtrListRemove (xmlSecPtrListPtr list,
- xmlSecSize pos);
-XMLSEC_EXPORT xmlSecPtr xmlSecPtrListRemoveAndReturn (xmlSecPtrListPtr list,
- xmlSecSize pos);
-XMLSEC_EXPORT void xmlSecPtrListDebugDump (xmlSecPtrListPtr list,
- FILE* output);
-XMLSEC_EXPORT void xmlSecPtrListDebugXmlDump (xmlSecPtrListPtr list,
- FILE* output);
+XMLSEC_EXPORT void xmlSecPtrListSetDefaultAllocMode(xmlSecAllocMode defAllocMode,
+ xmlSecSize defInitialSize);
+
+
+XMLSEC_EXPORT int xmlSecPtrListInitialize (xmlSecPtrListPtr list,
+ xmlSecPtrListId id);
+XMLSEC_EXPORT void xmlSecPtrListFinalize (xmlSecPtrListPtr list);
+XMLSEC_EXPORT xmlSecPtrListPtr xmlSecPtrListCreate (xmlSecPtrListId id);
+XMLSEC_EXPORT void xmlSecPtrListDestroy (xmlSecPtrListPtr list);
+XMLSEC_EXPORT void xmlSecPtrListEmpty (xmlSecPtrListPtr list);
+
+XMLSEC_EXPORT int xmlSecPtrListCopy (xmlSecPtrListPtr dst,
+ xmlSecPtrListPtr src);
+XMLSEC_EXPORT xmlSecPtrListPtr xmlSecPtrListDuplicate (xmlSecPtrListPtr list);
+
+XMLSEC_EXPORT xmlSecSize xmlSecPtrListGetSize (xmlSecPtrListPtr list);
+XMLSEC_EXPORT xmlSecPtr xmlSecPtrListGetItem (xmlSecPtrListPtr list,
+ xmlSecSize pos);
+XMLSEC_EXPORT int xmlSecPtrListAdd (xmlSecPtrListPtr list,
+ xmlSecPtr item);
+XMLSEC_EXPORT int xmlSecPtrListSet (xmlSecPtrListPtr list,
+ xmlSecPtr item,
+ xmlSecSize pos);
+XMLSEC_EXPORT int xmlSecPtrListRemove (xmlSecPtrListPtr list,
+ xmlSecSize pos);
+XMLSEC_EXPORT void xmlSecPtrListDebugDump (xmlSecPtrListPtr list,
+ FILE* output);
+XMLSEC_EXPORT void xmlSecPtrListDebugXmlDump (xmlSecPtrListPtr list,
+ FILE* output);
/**
* xmlSecPtrListGetName:
- * @list: the ponter to list.
- *
+ * @list: the ponter to list.
+ *
* Macro. Returns lists's name.
*/
#define xmlSecPtrListGetName(list) \
- (((list) != NULL) ? xmlSecPtrListKlassGetName((list)->id) : NULL)
+ (((list) != NULL) ? xmlSecPtrListKlassGetName((list)->id) : NULL)
/**
* xmlSecPtrListIsValid:
- * @list: the pointer to list.
+ * @list: the pointer to list.
*
* Macro. Returns 1 if @list is not NULL and @list->id is not NULL
* or 0 otherwise.
- */
+ */
#define xmlSecPtrListIsValid(list) \
- ((( list ) != NULL) && ((( list )->id) != NULL))
+ ((( list ) != NULL) && ((( list )->id) != NULL))
/**
* xmlSecPtrListCheckId:
- * @list: the pointer to list.
- * @dataId: the list Id.
+ * @list: the pointer to list.
+ * @dataId: the list Id.
*
* Macro. Returns 1 if @list is valid and @list's id is equal to @dataId.
*/
#define xmlSecPtrListCheckId(list, dataId) \
- (xmlSecPtrListIsValid(( list )) && \
- ((( list )->id) == ( dataId )))
+ (xmlSecPtrListIsValid(( list )) && \
+ ((( list )->id) == ( dataId )))
/**************************************************************************
@@ -114,63 +112,63 @@ XMLSEC_EXPORT void xmlSecPtrListDebugXmlDump (xmlSecPtrListPt
*
* The "unknown" id.
*/
-#define xmlSecPtrListIdUnknown NULL
+#define xmlSecPtrListIdUnknown NULL
/**
* xmlSecPtrDuplicateItemMethod:
- * @ptr: the poinetr to list item.
+ * @ptr: the poinetr to list item.
*
* Duplicates item @ptr.
*
* Returns: pointer to new item copy or NULL if an error occurs.
*/
-typedef xmlSecPtr (*xmlSecPtrDuplicateItemMethod) (xmlSecPtr ptr);
+typedef xmlSecPtr (*xmlSecPtrDuplicateItemMethod) (xmlSecPtr ptr);
/**
* xmlSecPtrDestroyItemMethod:
- * @ptr: the poinetr to list item.
+ * @ptr: the poinetr to list item.
*
* Destroys list item @ptr.
*/
-typedef void (*xmlSecPtrDestroyItemMethod) (xmlSecPtr ptr);
+typedef void (*xmlSecPtrDestroyItemMethod) (xmlSecPtr ptr);
/**
* xmlSecPtrDebugDumpItemMethod:
- * @ptr: the poinetr to list item.
- * @output: the output FILE.
+ * @ptr: the poinetr to list item.
+ * @output: the output FILE.
*
* Prints debug information about @item to @output.
*/
-typedef void (*xmlSecPtrDebugDumpItemMethod) (xmlSecPtr ptr,
- FILE* output);
+typedef void (*xmlSecPtrDebugDumpItemMethod) (xmlSecPtr ptr,
+ FILE* output);
/**
- * xmlSecPtrListKlass:
- * @name: the list klass name.
- * @duplicateItem: the duplciate item method.
- * @destroyItem: the destroy item method.
- * @debugDumpItem: the debug dump item method.
- * @debugXmlDumpItem: the debug dump item in xml format method.
+ * xmlSecPtrListKlass:
+ * @name: the list klass name.
+ * @duplicateItem: the duplciate item method.
+ * @destroyItem: the destroy item method.
+ * @debugDumpItem: the debug dump item method.
+ * @debugXmlDumpItem: the debug dump item in xml format method.
*
* List klass.
*/
struct _xmlSecPtrListKlass {
- const xmlChar* name;
- xmlSecPtrDuplicateItemMethod duplicateItem;
- xmlSecPtrDestroyItemMethod destroyItem;
- xmlSecPtrDebugDumpItemMethod debugDumpItem;
- xmlSecPtrDebugDumpItemMethod debugXmlDumpItem;
+ const xmlChar* name;
+ xmlSecPtrDuplicateItemMethod duplicateItem;
+ xmlSecPtrDestroyItemMethod destroyItem;
+ xmlSecPtrDebugDumpItemMethod debugDumpItem;
+ xmlSecPtrDebugDumpItemMethod debugXmlDumpItem;
};
/**
- * xmlSecPtrListKlassGetName:
- * @klass: the list klass.
+ * xmlSecPtrListKlassGetName:
+ * @klass: the list klass.
*2
-
+
* Macro. Returns the list klass name.
*/
#define xmlSecPtrListKlassGetName(klass) \
- (((klass) != NULL) ? ((klass)->name) : NULL)
+ (((klass) != NULL) ? ((klass)->name) : NULL)
/**************************************************************************
*
@@ -183,8 +181,8 @@ struct _xmlSecPtrListKlass {
* Strings list klass.
*/
#define xmlSecStringListId \
- xmlSecStringListGetKlass()
-XMLSEC_EXPORT xmlSecPtrListId xmlSecStringListGetKlass (void);
+ xmlSecStringListGetKlass()
+XMLSEC_EXPORT xmlSecPtrListId xmlSecStringListGetKlass (void);
#ifdef __cplusplus
}