summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorjak1 <jak1@themanaworld.org>2023-01-11 11:27:12 +0100
committerjak1 <jak1@themanaworld.org>2023-01-11 11:27:12 +0100
commit8f72ecccf83e216e0eaca3e637ef7bcdaea34682 (patch)
treebd503ee74189d0d234ad747404456532a2b4f99e /server
downloadsimple_library_example-8f72ecccf83e216e0eaca3e637ef7bcdaea34682.tar.gz
simple_library_example-8f72ecccf83e216e0eaca3e637ef7bcdaea34682.tar.bz2
simple_library_example-8f72ecccf83e216e0eaca3e637ef7bcdaea34682.tar.xz
simple_library_example-8f72ecccf83e216e0eaca3e637ef7bcdaea34682.zip
init lib example repo
Diffstat (limited to 'server')
-rw-r--r--server/main.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/server/main.c b/server/main.c
new file mode 100644
index 0000000..35ff02d
--- /dev/null
+++ b/server/main.c
@@ -0,0 +1,18 @@
+/*
+ * som_net / simple library example (c) by jak1
+ *
+ * som_net / simple library example is licensed under a
+ * Creative Commons Attribution-ShareAlike 4.0 International License.
+ *
+ * You should have received a copy of the license along with this
+ * work. If not, see <http://creativecommons.org/licenses/by-sa/4.0/>.
+ * Footer
+*/
+
+#include "../shared/hook.h"
+
+int main(void)
+{
+ start_chat(0);
+ return 0;
+}