00001
00021 #include <stdlib.h>
00022 #include <stdio.h>
00023 #include <unistd.h>
00024 #include "sportident.h"
00033 int CloseStation(si_station * station)
00034 {
00035 station->fd = close( station->fd);
00036 if (station->fd <0)
00037 {
00038
00039 return -1;
00040 }
00041 return station->fd;
00042 }