muc.c

 1/*
 2 * @file muc.c
 3 *
 4 * vim: expandtab:ts=2:sts=2:sw=2
 5 *
 6 * Copyright (C) 2020 Anoxinon e.V.
 7 *
 8 * This file is part of xmppc.
 9 *
10 * xmppc is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * xmppc is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with Foobar.  If not, see <http://www.gnu.org/licenses/>.
22 *
23 * German
24 *
25 * Diese Datei ist Teil von xmppc.
26 *
27 * xmppc ist Freie Software: Sie können es unter den Bedingungen
28 * der GNU General Public License, wie von der Free Software Foundation,
29 * Version 3 der Lizenz oder (nach Ihrer Wahl) jeder neueren
30 * veröffentlichten Version, weiter verteilen und/oder modifizieren.
31 *
32 * xmppc wird in der Hoffnung, dass es nützlich sein wird, aber
33 * OHNE JEDE GEWÄHRLEISTUNG, bereitgestellt; sogar ohne die implizite
34 * Gewährleistung der MARKTFÄHIGKEIT oder EIGNUNG FÜR EINEN BESTIMMTEN ZWECK.
35 * Siehe die GNU General Public License für weitere Details.
36 *
37 * Sie sollten eine Kopie der GNU General Public License zusammen mit diesem
38 * Programm erhalten haben. Wenn nicht, siehe <https://www.gnu.org/licenses/>.
39 */
40
41#include "account.h"
42#include "stdio.h"
43#include "string.h"
44
45void muc_execute_command(xmppc_t *xmppc, int argc, char *argv[]) {
46  logError(xmppc, "Message command not implemented!\n"); 
47}
48