]> git.ozlabs.org Git - ccan/commitdiff
ilog: reformat so webpage doesn't get confused.
authorRusty Russell <rusty@rustcorp.com.au>
Mon, 9 Sep 2013 07:23:38 +0000 (16:53 +0930)
committerRusty Russell <rusty@rustcorp.com.au>
Mon, 9 Sep 2013 07:30:02 +0000 (17:00 +0930)
The extra spaces make my web formatter think they're literal text, which
looks weird.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ccan/ilog/_info

index 9038b59dbc69c78db3080a1e42643a0573677862..d57c05d4d25062032c390a31d5e75d1d92ced38f 100644 (file)
@@ -2,15 +2,18 @@
  * ilog - Integer logarithm.
  *
  * ilog_32() and ilog_64() compute the minimum number of bits required to store
- *  an unsigned 32-bit or 64-bit value without any leading zero bits.
+ * an unsigned 32-bit or 64-bit value without any leading zero bits.
+ *
  * This can also be thought of as the location of the highest set bit, with
- *  counting starting from one (so that 0 returns 0, 1 returns 1, and 2**31
- *  returns 32).
+ * counting starting from one (so that 0 returns 0, 1 returns 1, and 2**31
+ * returns 32).
+ *
  * When the value is known to be non-zero ilog32_nz() and ilog64_nz() can
- *  compile into as few as two instructions, one of which may get optimized out
- *  later.
+ * compile into as few as two instructions, one of which may get optimized out
+ * later.
+ *
  * STATIC_ILOG_32 and STATIC_ILOG_64 allow computation on compile-time
- *  constants, so other compile-time constants can be derived from them.
+ * constants, so other compile-time constants can be derived from them.
  *
  * Example:
  *  #include <stdio.h>