blob: cad378183f17879d7e232e97a393f873a3e19d6d (
plain) (
tree)
|
|
/*
* 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)
{
set_client();
printf("%d\n", is_client());
start_chat();
return 0;
}
|