diff options
author | jak1 <jak1@themanaworld.org> | 2023-01-11 11:27:12 +0100 |
---|---|---|
committer | jak1 <jak1@themanaworld.org> | 2023-01-11 11:27:12 +0100 |
commit | 8f72ecccf83e216e0eaca3e637ef7bcdaea34682 (patch) | |
tree | bd503ee74189d0d234ad747404456532a2b4f99e /server | |
download | simple_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.c | 18 |
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; +} |