Moved more functions to stanza module

This commit is contained in:
James Booth
2015-05-15 00:12:47 +01:00
parent c6fe602fd8
commit debac69cbb
4 changed files with 32 additions and 22 deletions

View File

@@ -14,7 +14,8 @@ typedef struct xmpp_stanza_t {
struct xmpp_stanza_t *parent;
} XMPPStanza;
void
show_stanza(XMPPStanza *stanza);
void stanza_show(XMPPStanza *stanza);
void stanza_show_all(void);
void stanza_add(XMPPStanza *stanza);
#endif