Bugzilla – Bug 1212687
ffs not documented in info libc
Last modified: 2023-08-02 15:41:30 UTC
The following code compiles and runs all right: #include <string.h> #include <stdlib.h> #include <assert.h> int const main () { assert (03 == ffs (04)) ; return EXIT_SUCCESS; ; } However, the function ffs is not documented by the GNU C Library Reference Manual. It is not deprecated like index and should be documented.