Moved stanza creation to stanza module

This commit is contained in:
James Booth
2015-05-15 01:06:30 +01:00
parent 34aca16d4a
commit c548c1be1b
4 changed files with 27 additions and 17 deletions

View File

@@ -14,6 +14,7 @@ typedef struct xmpp_stanza_t {
struct xmpp_stanza_t *parent;
} XMPPStanza;
XMPPStanza* stanza_new(const char *name, const char **attributes);
void stanza_show(XMPPStanza *stanza);
void stanza_show_all(void);
void stanza_add(XMPPStanza *stanza);