Renamed parser -> stanza

This commit is contained in:
James Booth
2015-06-06 22:28:10 +01:00
parent 6522e94977
commit b7151c5da3
5 changed files with 7 additions and 7 deletions

30
src/server/stanza.h Normal file
View File

@@ -0,0 +1,30 @@
/*
* stanza.h
*
* Copyright (C) 2015 James Booth <boothj5@gmail.com>
*
* This file is part of Stabber.
*
* Stabber is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Stabber is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Stabber. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef __H_STANZA
#define __H_STANZA
#include "server/stanzas.h"
XMPPStanza* parse_stanza(char *stanza_text);
#endif