/* * File: bomberstudent_server.c * Author: Arthur Brandao * * Created on 14 novembre 2018 */ #include #include #include #include "arraylist.h" #include "bomberstudent_server.h" /* --- Globale --- */ arraylist get; arraylist post; /* --- Fonctions publiques --- */ void ini_server(){ arraylist_ini(&get); arraylist_ini(&post); } boolean launch_udp_server(int port){ return false; }