1 | /* -------------------------------------------------------------------------- |
---|
2 | * |
---|
3 | * License |
---|
4 | * |
---|
5 | * The contents of this file are subject to the Jabber Open Source License |
---|
6 | * Version 1.0 (the "JOSL"). You may not copy or use this file, in either |
---|
7 | * source code or executable form, except in compliance with the JOSL. You |
---|
8 | * may obtain a copy of the JOSL at http://www.jabber.org/ or at |
---|
9 | * http://www.opensource.org/. |
---|
10 | * |
---|
11 | * Software distributed under the JOSL is distributed on an "AS IS" basis, |
---|
12 | * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the JOSL |
---|
13 | * for the specific language governing rights and limitations under the |
---|
14 | * JOSL. |
---|
15 | * |
---|
16 | * Copyrights |
---|
17 | * |
---|
18 | * Portions created by or assigned to Jabber.com, Inc. are |
---|
19 | * Copyright (c) 1999-2002 Jabber.com, Inc. All Rights Reserved. Contact |
---|
20 | * information for Jabber.com, Inc. is available at http://www.jabber.com/. |
---|
21 | * |
---|
22 | * Portions Copyright (c) 1998-1999 Jeremie Miller. |
---|
23 | * |
---|
24 | * Acknowledgements |
---|
25 | * |
---|
26 | * Special thanks to the Jabber Open Source Contributors for their |
---|
27 | * suggestions and support of Jabber. |
---|
28 | * |
---|
29 | * Alternatively, the contents of this file may be used under the terms of the |
---|
30 | * GNU General Public License Version 2 or later (the "GPL"), in which case |
---|
31 | * the provisions of the GPL are applicable instead of those above. If you |
---|
32 | * wish to allow use of your version of this file only under the terms of the |
---|
33 | * GPL and not to allow others to use your version of this file under the JOSL, |
---|
34 | * indicate your decision by deleting the provisions above and replace them |
---|
35 | * with the notice and other provisions required by the GPL. If you do not |
---|
36 | * delete the provisions above, a recipient may use your version of this file |
---|
37 | * under either the JOSL or the GPL. |
---|
38 | * |
---|
39 | * |
---|
40 | * --------------------------------------------------------------------------*/ |
---|
41 | |
---|
42 | #include "lib.h" |
---|
43 | #include <glib.h> |
---|
44 | |
---|
45 | void xmlnode_put_expat_attribs(xmlnode owner, const char** atts) |
---|
46 | { |
---|
47 | int i = 0; |
---|
48 | if (atts == NULL) return; |
---|
49 | while (atts[i] != '\0') |
---|
50 | { |
---|
51 | xmlnode_put_attrib(owner, atts[i], atts[i+1]); |
---|
52 | i += 2; |
---|
53 | } |
---|
54 | } |
---|