Run Nindent on com32/include/netinet/in.h
authorH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:22 +0000 (15:10 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:22 +0000 (15:10 -0700)
Automatically reformat com32/include/netinet/in.h using Nindent.

Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
com32/include/netinet/in.h

index 5fd71a6..051cc08 100644 (file)
@@ -7,7 +7,7 @@
 
 static inline uint16_t __htons(uint16_t v)
 {
-  return ((v) << 8) | ((v) >> 8);
+    return ((v) << 8) | ((v) >> 8);
 }
 
 #define htons(x) __htons(x)
@@ -15,15 +15,14 @@ static inline uint16_t __htons(uint16_t v)
 
 static inline uint32_t __htonl(uint32_t v)
 {
-  if ( __builtin_constant_p(v) ) {
-    return (((v) & 0x000000ff) << 24) |
-      (((v) & 0x0000ff00) << 8) |
-      (((v) & 0x00ff0000) >> 8) |
-      (((v) & 0xff000000) >> 24);
-  } else {
-    asm("xchgb %h0,%b0 ; roll $16,%0 ; xchgb %h0,%b0" : "+abcd" (v));
-    return v;
-  }
+    if (__builtin_constant_p(v)) {
+       return (((v) & 0x000000ff) << 24) |
+           (((v) & 0x0000ff00) << 8) |
+           (((v) & 0x00ff0000) >> 8) | (((v) & 0xff000000) >> 24);
+    } else {
+asm("xchgb %h0,%b0 ; roll $16,%0 ; xchgb %h0,%b0":"+abcd"(v));
+       return v;
+    }
 }
 
 #define htonl(x) __htonl(x)
@@ -31,7 +30,7 @@ static inline uint32_t __htonl(uint32_t v)
 
 static inline uint64_t __htonq(uint64_t v)
 {
-  return ((uint64_t) __htonl(v) << 32) | __htonl(v >> 32);
+    return ((uint64_t) __htonl(v) << 32) | __htonl(v >> 32);
 }
 
 #define htonq(x) __htonq(x)
@@ -41,7 +40,7 @@ typedef uint32_t in_addr_t;
 typedef uint16_t in_port_t;
 
 struct in_addr {
-  in_addr_t s_addr;
+    in_addr_t s_addr;
 };
 
 #endif /* _NETINET_IN_H */