summaryrefslogtreecommitdiff
path: root/server.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2012-07-14 22:24:17 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2012-10-02 22:14:45 -0700
commit5ec0ba545da0a9e52e2c6a473dbbc81b4a6f7f96 (patch)
tree9af2b84a28ff38098df1fbda92620822df6cbedc /server.c
parentfdd58cacbb5b93b74ba9ba766e752b922a7c8b9c (diff)
downloadxscope-5ec0ba545da0a9e52e2c6a473dbbc81b4a6f7f96.tar.gz
Move ILong, IShort, etal to inline functions in x11.h
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'server.c')
-rw-r--r--server.c57
1 files changed, 0 insertions, 57 deletions
diff --git a/server.c b/server.c
index 5226a03..d822ea9 100644
--- a/server.c
+++ b/server.c
@@ -127,63 +127,6 @@ PrintTime(void)
/* */
/* ************************************************************ */
-/* we will need to be able to interpret the values stored in the
- requests as various built-in types. The following routines
- support the types built into X11 */
-
-long
-pad(long n)
-{
- /* round up to next multiple of 4 */
- return ((n + 3) & ~0x3);
-}
-
-uint32_t
-ILong(const unsigned char buf[])
-{
- /* check for byte-swapping */
- if (littleEndian)
- return ((((((buf[3] << 8) | buf[2]) << 8) | buf[1]) << 8) | buf[0]);
- return ((((((buf[0] << 8) | buf[1]) << 8) | buf[2]) << 8) | buf[3]);
-}
-
-uint16_t
-IShort(const unsigned char buf[])
-{
- /* check for byte-swapping */
- if (littleEndian)
- return (buf[1] << 8) | buf[0];
- return ((buf[0] << 8) | buf[1]);
-}
-
-uint16_t
-IChar2B(const unsigned char buf[])
-{
- /* CHAR2B is like an IShort, but not byte-swapped */
- return ((buf[0] << 8) | buf[1]);
-}
-
-uint8_t
-IByte(const unsigned char buf[])
-{
- return (buf[0]);
-}
-
-Boolean
-IBool(const unsigned char buf[])
-{
- if (buf[0] != 0)
- return (true);
- else
- return (false);
-}
-
-
-/* ************************************************************ */
-/* */
-/* */
-/* ************************************************************ */
-
/* we will need to save bytes until we get a complete request to
interpret. The following procedures provide this ability */