diff options
author | Martin Mares <mj@ucw.cz> | 2000-06-04 20:34:39 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-06-04 20:34:39 +0200 |
commit | 7722938d63d206ebc0e1da732009e1e9f2cd9d72 (patch) | |
tree | 41073dbf2866687d85476982ffa1c0288a878da0 /lib/bitops.c | |
parent | 102e3e0e0277e7b123c7c1ae3635c4a8fb55c900 (diff) | |
download | bird-7722938d63d206ebc0e1da732009e1e9f2cd9d72.tar bird-7722938d63d206ebc0e1da732009e1e9f2cd9d72.zip |
Added library progdocs.
Diffstat (limited to 'lib/bitops.c')
-rw-r--r-- | lib/bitops.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/bitops.c b/lib/bitops.c index 10bca04..6ca0505 100644 --- a/lib/bitops.c +++ b/lib/bitops.c @@ -9,12 +9,27 @@ #include "nest/bird.h" #include "bitops.h" +/** + * u32_mkmask - create a bit mask + * @n: number of bits + * + * u32_mkmask() returns an unsigned 32-bit integer which binary + * representation consists of @n ones followed by zeroes. + */ u32 u32_mkmask(unsigned n) { return n ? ~((1 << (32 - n)) - 1) : 0; } +/** + * u32_masklen - calculate length of a bit mask + * @x: bit mask + * + * This function checks whether the given integer @x represents + * a valid bit mask (binary representation contains first ones, then + * zeroes) and returns the number of ones or -1 if the mask is invalid. + */ int u32_masklen(u32 x) { |