summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2006-02-09 20:57:44 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2006-02-09 20:57:44 +0000
commit1709027cddce03a1ffe8f2a130e91ff33e56ab06 (patch)
tree7e8c1abd2c07b3099d8baee14af2f73b01050fff
parentdcec8eb5515fbb4a292846b5ac8e5ddd0877e139 (diff)
Added SEE ALSO pointers to wide character equivalent functions
-rw-r--r--man3/gets.34
-rw-r--r--man3/isalpha.312
-rw-r--r--man3/puts.33
-rw-r--r--man3/stpcpy.33
-rw-r--r--man3/stpncpy.33
-rw-r--r--man3/strcmp.34
-rw-r--r--man3/strdup.33
-rw-r--r--man3/strlen.34
-rw-r--r--man3/strpbrk.33
-rw-r--r--man3/strspn.34
-rw-r--r--man3/strstr.33
-rw-r--r--man3/strtok.33
-rw-r--r--man3/toupper.32
13 files changed, 42 insertions, 9 deletions
diff --git a/man3/gets.3 b/man3/gets.3
index bdb56cd6..54d2b9a8 100644
--- a/man3/gets.3
+++ b/man3/gets.3
@@ -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)
diff --git a/man3/isalpha.3 b/man3/isalpha.3
index 01c36706..16204517 100644
--- a/man3/isalpha.3
+++ b/man3/isalpha.3
@@ -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),
diff --git a/man3/puts.3 b/man3/puts.3
index c9adc744..aee81d9b 100644
--- a/man3/puts.3
+++ b/man3/puts.3
@@ -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)
diff --git a/man3/stpcpy.3 b/man3/stpcpy.3
index 58e07672..4d5938ac 100644
--- a/man3/stpcpy.3
+++ b/man3/stpcpy.3
@@ -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)
diff --git a/man3/stpncpy.3 b/man3/stpncpy.3
index 832d777c..27c9b910 100644
--- a/man3/stpncpy.3
+++ b/man3/stpncpy.3
@@ -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)
diff --git a/man3/strcmp.3 b/man3/strcmp.3
index faee524e..9b93f70e 100644
--- a/man3/strcmp.3
+++ b/man3/strcmp.3
@@ -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)
diff --git a/man3/strdup.3 b/man3/strdup.3
index 83bec938..d6012368 100644
--- a/man3/strdup.3
+++ b/man3/strdup.3
@@ -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)
diff --git a/man3/strlen.3 b/man3/strlen.3
index ce09a141..84d1d76c 100644
--- a/man3/strlen.3
+++ b/man3/strlen.3
@@ -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)
diff --git a/man3/strpbrk.3 b/man3/strpbrk.3
index ac508116..0e4c5ab9 100644
--- a/man3/strpbrk.3
+++ b/man3/strpbrk.3
@@ -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)
diff --git a/man3/strspn.3 b/man3/strspn.3
index c3f546a7..edacaa4e 100644
--- a/man3/strspn.3
+++ b/man3/strspn.3
@@ -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)
diff --git a/man3/strstr.3 b/man3/strstr.3
index 3c76baee..37ac7f33 100644
--- a/man3/strstr.3
+++ b/man3/strstr.3
@@ -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)
diff --git a/man3/strtok.3 b/man3/strtok.3
index b21a319e..9451f6d4 100644
--- a/man3/strtok.3
+++ b/man3/strtok.3
@@ -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)
diff --git a/man3/toupper.3 b/man3/toupper.3
index 88c53bb9..3f0f551c 100644
--- a/man3/toupper.3
+++ b/man3/toupper.3
@@ -66,4 +66,6 @@ example.
.SH "SEE ALSO"
.BR isalpha (3),
.BR setlocale (3),
+.BR towlower (3),
+.BR towupper (3),
.BR locale (7)