From af34a2515e540d2f0f8f09f158d4e8d3f9591ee2 Mon Sep 17 00:00:00 2001 From: Alexander Vdolainen Date: Sat, 20 Mar 2021 16:13:32 +0200 Subject: [PATCH] added test's directory; --- src/tests/.gitignore | 2 ++ src/tests/testimap.c | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 src/tests/.gitignore create mode 100644 src/tests/testimap.c diff --git a/src/tests/.gitignore b/src/tests/.gitignore new file mode 100644 index 0000000..89cb10b --- /dev/null +++ b/src/tests/.gitignore @@ -0,0 +1,2 @@ +testimap +.dirstamp diff --git a/src/tests/testimap.c b/src/tests/testimap.c new file mode 100644 index 0000000..896397c --- /dev/null +++ b/src/tests/testimap.c @@ -0,0 +1,41 @@ +/* + * ejabberd external authentication program + * + * (c) Alexander Vdolainen 2013, 2018, 2019, 2021 + * + * this 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 2 of the License, or + * (at your option) any later version. + * + * this 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 this program. If not, see ."; + * + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +int main(int argc, char **argv) +{ + return 0; +}