aboutsummaryrefslogtreecommitdiffstats
path: root/src/strings/ffs.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/strings/ffs.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/strings/ffs.c b/src/strings/ffs.c
index 7de35a4..46ad612 100644
--- a/src/strings/ffs.c
+++ b/src/strings/ffs.c
@@ -22,7 +22,9 @@
/**
* Find the first set bit in an integer.
*
- * @param i The integer
+ * @etymology (F)ind (f)irst (s)et bit on `int`.
+ *
+ * @param i The integer.
* @return The value of the least significant set bit, zero if none.
*/
int ffs(int i)