| 1234567891011121314151617181920212223242526 |
- /*
- * File: bomberstudent_server.c
- * Author: Arthur Brandao
- *
- * Created on 14 novembre 2018
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <pthread.h>
- #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;
- }
|