OLD | NEW |
(Empty) | |
| 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
| 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 4 |
| 5 #ifndef _SECITEM_ARRAY_H_ |
| 6 #define _SECITEM_ARRAY_H_ |
| 7 |
| 8 #include "utilrename.h" |
| 9 |
| 10 #include "plarena.h" |
| 11 #include "seccomon.h" |
| 12 #include "../sslt.h" |
| 13 |
| 14 SEC_BEGIN_PROTOS |
| 15 |
| 16 extern SECItemArray *SECITEM_AllocArray(PLArenaPool *arena, |
| 17 SECItemArray *array, |
| 18 unsigned int len); |
| 19 extern SECItemArray *SECITEM_DupArray(PLArenaPool *arena, const SECItemArray *fr
om); |
| 20 extern void SECITEM_FreeArray(SECItemArray *array, PRBool freeit); |
| 21 extern void SECITEM_ZfreeArray(SECItemArray *array, PRBool freeit); |
| 22 |
| 23 SEC_END_PROTOS |
| 24 |
| 25 #endif /* _SECITEM_ARRAY_H_ */ |
OLD | NEW |