From 241aca98bdc8106221ee7d7dbcea9f2fa17f24bc Mon Sep 17 00:00:00 2001 From: Konstantin Kowalski Date: Fri, 26 Jul 2013 23:07:25 -0400 Subject: A *lot* of style changes. --- core/Lossless_UDP.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'core/Lossless_UDP.h') diff --git a/core/Lossless_UDP.h b/core/Lossless_UDP.h index a9f1bb15..d27fea79 100644 --- a/core/Lossless_UDP.h +++ b/core/Lossless_UDP.h @@ -69,11 +69,11 @@ char id_packet(int connection_id); /* return 0 if there is no received data in the buffer. return length of received packet if successful */ -int read_packet(int connection_id, uint8_t * data); +int read_packet(int connection_id, uint8_t *data); /* return 0 if data could not be put in packet queue return 1 if data was put into the queue */ -int write_packet(int connection_id, uint8_t * data, uint32_t length); +int write_packet(int connection_id, uint8_t *data, uint32_t length); /* returns the number of packets in the queue waiting to be successfully sent. */ uint32_t sendqueue(int connection_id); @@ -97,7 +97,7 @@ void doLossless_UDP(); /* if we receive a Lossless_UDP packet we call this function so it can be handled. return 0 if packet is handled correctly. return 1 if it didn't handle the packet or if the packet was shit. */ -int LosslessUDP_handlepacket(uint8_t * packet, uint32_t length, IP_Port source); +int LosslessUDP_handlepacket(uint8_t *packet, uint32_t length, IP_Port source); #ifdef __cplusplus } -- cgit v1.2.3