comparison cinst/nss-secitemlist.h @ 1304:82fab0c689bf 0.9.3

Fix doxygen syntax error. Change inout to in,out
author Andre Heinecke <andre.heinecke@intevation.de>
date Mon, 29 Sep 2014 16:42:06 +0200
parents 2a1aa9df8f11
children
comparison
equal deleted inserted replaced
1303:78637257f547 1304:82fab0c689bf
33 33
34 /** 34 /**
35 * @brief Prepend a new SECItem to list 35 * @brief Prepend a new SECItem to list
36 * 36 *
37 * The data will be copied. 37 * The data will be copied.
38 * @param[inout] list pointer to the list to which the item will be added. 38 * @param[in,out] list pointer to the list to which the item will be added.
39 * @param[in] item the SECItem to add to the list. 39 * @param[in] item the SECItem to add to the list.
40 */ 40 */
41 void seciteml_push (seciteml_t **list, SECItem *item); 41 void seciteml_push (seciteml_t **list, SECItem *item);
42 42
43 /** 43 /**
44 * @brief Remove and return first SECItem from list 44 * @brief Remove and return first SECItem from list
45 * 45 *
46 * @param[inout] list pointer to the list to which the item will be added. 46 * @param[in,out] list pointer to the list to which the item will be added.
47 * @returns the removed item, or NULL if list is empty. 47 * @returns the removed item, or NULL if list is empty.
48 * The caller shoud free this item after use. 48 * The caller shoud free this item after use.
49 */ 49 */
50 SECItem *seciteml_pop (seciteml_t **list); 50 SECItem *seciteml_pop (seciteml_t **list);
51 51
52 /** 52 /**
53 * @brief Free a secitem list 53 * @brief Free a secitem list
54 * 54 *
55 * Frees a secitem list 55 * Frees a secitem list
56 * 56 *
57 * @param[inout] list pointer to the list which should be freed. set to NULL 57 * @param[in,out] list pointer to the list which should be freed. set to NULL
58 */ 58 */
59 void seciteml_free (seciteml_t **list); 59 void seciteml_free (seciteml_t **list);
60 60
61 61
62 #endif 62 #endif

http://wald.intevation.org/projects/trustbridge/