aboutsummaryrefslogtreecommitdiffstats
path: root/src/strings/ffsl.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/strings/ffsl.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/strings/ffsl.c b/src/strings/ffsl.c
index 6657769..3116723 100644
--- a/src/strings/ffsl.c
+++ b/src/strings/ffsl.c
@@ -18,10 +18,13 @@
#include <strings.h>
+
/**
* Find the first set bit in an integer.
*
- * @param i The integer
+ * @etymology (F)ind (f)irst (s)et bit on `(l)ong int`.
+ *
+ * @param i The integer.
* @return The value of the least significant set bit, zero if none.
*/
int ffsl(long i)