Bug 1212687 - ffs not documented in info libc
Summary: ffs not documented in info libc
Status: NEW
Alias: None
Product: openSUSE Tumbleweed
Classification: openSUSE
Component: Development (show other bugs)
Version: Current
Hardware: x86-64 openSUSE Tumbleweed
: P5 - None : Minor (vote)
Target Milestone: ---
Assignee: Andreas Schwab
QA Contact: E-mail List
URL: info:/libc/Normalization Functions
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2023-06-25 13:07 UTC by Christopher Yeleighton
Modified: 2023-08-02 15:41 UTC (History)
0 users

See Also:
Found By: Community User
Services Priority:
Business Priority:
Blocker: ---
Marketing QA Status: ---
IT Deployment: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Christopher Yeleighton 2023-06-25 13:07:58 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.