]> git.proxmox.com Git - mirror_frr.git/blobdiff - lib/jhash.h
*: reindent
[mirror_frr.git] / lib / jhash.h
index 985ac94e04964677ba683a51e8e4e25f7e4d1532..74ce6a323355e0a3bde232800eaffea4695cea3b 100644 (file)
@@ -29,7 +29,8 @@ extern u_int32_t jhash(const void *key, u_int32_t length, u_int32_t initval);
 /* A special optimized version that handles 1 or more of u_int32_ts.
  * The length parameter here is the number of u_int32_ts in the key.
  */
-extern u_int32_t jhash2(const u_int32_t *k, u_int32_t length, u_int32_t initval);
+extern u_int32_t jhash2(const u_int32_t *k, u_int32_t length,
+                       u_int32_t initval);
 
 /* A special ultra-optimized versions that knows they are hashing exactly
  * 3, 2 or 1 word(s).
@@ -37,7 +38,8 @@ extern u_int32_t jhash2(const u_int32_t *k, u_int32_t length, u_int32_t initval)
  * NOTE: In partilar the "c += length; __jhash_mix(a,b,c);" normally
  *       done at the end is not done here.
  */
-extern u_int32_t jhash_3words(u_int32_t a, u_int32_t b, u_int32_t c, u_int32_t initval);
+extern u_int32_t jhash_3words(u_int32_t a, u_int32_t b, u_int32_t c,
+                             u_int32_t initval);
 extern u_int32_t jhash_2words(u_int32_t a, u_int32_t b, u_int32_t initval);
 extern u_int32_t jhash_1word(u_int32_t a, u_int32_t initval);