Added SEE ALSO pointers to wide character equivalent functions

This commit is contained in:
Michael Kerrisk 2006-02-09 20:57:44 +00:00
parent dcec8eb551
commit 1709027cdd
13 changed files with 42 additions and 9 deletions

View File

@ -160,9 +160,13 @@ will be undefined and very probably not what you want.
.BR read (2),
.BR write (2),
.BR ferror (3),
.BR fgetwc (3),
.BR fgets (3),
.BR fopen (3),
.BR fread (3),
.BR fseek (3),
.BR getwchar (3),
.BR puts (3),
.BR scanf (3),
.BR ungetwc (3),
.BR unlocked_stdio (3)

View File

@ -153,6 +153,18 @@ will not recognize an A-umlaut (\(:A) as an uppercase letter in the default
.B "C"
locale.
.SH "SEE ALSO"
.BR iswalnum (3),
.BR iswalpha (3),
.BR iswblank (3),
.BR iswcntrl (3),
.BR iswdigit (3),
.BR iswgraph (3),
.BR iswlower (3),
.BR iswprint (3),
.BR iswpunct (3),
.BR iswspace (3),
.BR iswupper (3),
.BR iswxdigit (3),
.BR setlocale (3),
.BR tolower (3),
.BR toupper (3),

View File

@ -112,8 +112,11 @@ will be undefined and very probably not what you want.
.BR write (2),
.BR ferror (3),
.BR fopen (3),
.BR fputwc (3),
.BR fputws (3),
.BR fseek (3),
.BR fwrite (3),
.BR gets (3),
.BR putwchar (3),
.BR scanf (3),
.BR unlocked_stdio (3)

View File

@ -67,4 +67,5 @@ Perhaps it comes from MS-DOS.
.BR memccpy (3),
.BR memcpy (3),
.BR memmove (3),
.BR strcpy (3)
.BR strcpy (3),
.BR wcpcpy (3)

View File

@ -40,4 +40,5 @@ in \fIdest\fP, or, if \fIdest\fP is not null-terminated,
.SH "CONFORMING TO"
This function is a GNU extension.
.SH "SEE ALSO"
.BR strncpy (3)
.BR strncpy (3),
.BR wcpncpy (3)

View File

@ -58,4 +58,6 @@ SVID 3, POSIX, 4.3BSD, ISO 9899
.BR memcmp (3),
.BR strcasecmp (3),
.BR strcoll (3),
.BR strncasecmp (3)
.BR strncasecmp (3),
.BR wcscmp (3),
.BR wcsncmp (3)

View File

@ -75,4 +75,5 @@ SVID 3, 4.3BSD.
.BR calloc (3),
.BR free (3),
.BR malloc (3),
.BR realloc (3)
.BR realloc (3),
.BR wcsdup (3)

View File

@ -42,4 +42,6 @@ The \fBstrlen\fP() function returns the number of characters in \fIs\fP.
.SH "CONFORMING TO"
SVID 3, POSIX, 4.3BSD, ISO 9899
.SH "SEE ALSO"
.BR string (3)
.BR string (3),
.BR wcslen (3),
.BR wcsnlen (3)

View File

@ -51,4 +51,5 @@ SVID 3, POSIX, 4.3BSD, ISO 9899
.BR strsep (3),
.BR strspn (3),
.BR strstr (3),
.BR strtok (3)
.BR strtok (3),
.BR wcspbrk (3)

View File

@ -62,4 +62,6 @@ SVID 3, POSIX, 4.3BSD, ISO 9899
.BR strpbrk (3),
.BR strsep (3),
.BR strstr (3),
.BR strtok (3)
.BR strtok (3),
.BR wcsspn (3),
.BR wcscspn (3)

View File

@ -70,4 +70,5 @@ The \fBstrcasestr\fP() function is a non-standard extension.
.BR strpbrk (3),
.BR strsep (3),
.BR strspn (3),
.BR strtok (3)
.BR strtok (3),
.BR wcsstr (3)

View File

@ -175,4 +175,5 @@ POSIX.1-2001
.BR strpbrk (3),
.BR strsep (3),
.BR strspn (3),
.BR strstr (3)
.BR strstr (3),
.BR wcstok (3)

View File

@ -66,4 +66,6 @@ example.
.SH "SEE ALSO"
.BR isalpha (3),
.BR setlocale (3),
.BR towlower (3),
.BR towupper (3),
.BR locale (7)