From fdd58cacbb5b93b74ba9ba766e752b922a7c8b9c Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sat, 14 Jul 2012 22:16:27 -0700 Subject: Convert ILong, IShort, etal to return C99 uint*_t types Signed-off-by: Alan Coopersmith --- server.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'server.c') diff --git a/server.c b/server.c index 3369460..5226a03 100644 --- a/server.c +++ b/server.c @@ -138,7 +138,7 @@ pad(long n) return ((n + 3) & ~0x3); } -unsigned long +uint32_t ILong(const unsigned char buf[]) { /* check for byte-swapping */ @@ -147,7 +147,7 @@ ILong(const unsigned char buf[]) return ((((((buf[0] << 8) | buf[1]) << 8) | buf[2]) << 8) | buf[3]); } -unsigned short +uint16_t IShort(const unsigned char buf[]) { /* check for byte-swapping */ @@ -156,14 +156,14 @@ IShort(const unsigned char buf[]) return ((buf[0] << 8) | buf[1]); } -unsigned short +uint16_t IChar2B(const unsigned char buf[]) { /* CHAR2B is like an IShort, but not byte-swapped */ return ((buf[0] << 8) | buf[1]); } -unsigned short +uint8_t IByte(const unsigned char buf[]) { return (buf[0]); -- cgit v1.2.1