]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
ubstitute `//0' by '\\0'.
authorMichael Kerrisk <mtk.manpages@gmail.com>
Tue, 12 Jun 2007 21:30:10 +0000 (21:30 +0000)
committerMichael Kerrisk <mtk.manpages@gmail.com>
Tue, 12 Jun 2007 21:30:10 +0000 (21:30 +0000)
man3/stpcpy.3
man3/strlen.3
man3/strsep.3
man3/strstr.3
man3/strtol.3
man3/strtoul.3
man3/strxfrm.3

index 1dcd3ca947463339ddc802d20086919b98411079..70e9e21e95b350ac753d997a6ccebdbebf49ccc8 100644 (file)
@@ -37,7 +37,7 @@ stpcpy \- copy a string returning a pointer to its end
 The
 .BR stpcpy ()
 function copies the string pointed to by \fIsrc\fP
-(including the terminating `\\0' character) to the array pointed to by
+(including the terminating '\\0' character) to the array pointed to by
 \fIdest\fP.
 The strings may not overlap, and the destination string
 \fIdest\fP must be large enough to receive the copy.
index dcd9e03364748947ad895176b09e0bd4fcc957b3..0e25521c2d7fb84ac74d87c1928deb4e7e2543e9 100644 (file)
@@ -38,7 +38,7 @@ strlen \- calculate the length of a string
 The
 .BR strlen ()
 function calculates the length of the string
-\fIs\fP, not including the terminating `\\0' character.
+\fIs\fP, not including the terminating '\\0' character.
 .SH "RETURN VALUE"
 The
 .BR strlen ()
index 5706f4e8374f1815c68fa2629452bbf542d4bb55..60e9ba1137f65a16e5a704509ca4a16c6137e468 100644 (file)
@@ -45,7 +45,7 @@ and does nothing else.
 Otherwise, this function finds the first token
 in the string *\fIstringp\fP, where tokens
 are delimited by symbols in the string \fIdelim\fP.
-This token is terminated with a `\\0' character
+This token is terminated with a '\\0' character
 (by overwriting the delimiter)
 and *\fIstringp\fP is updated to point past the token.
 In case no delimiter was found, the token is taken to be
index 9d08885a4059101a47a57060cf95e4146fccb814..49039dbb157b8e67ba1c81df39f2287f2f947e0c 100644 (file)
@@ -48,7 +48,7 @@ The
 .BR strstr ()
 function finds the first occurrence of the substring
 \fIneedle\fP in the string \fIhaystack\fP.
-The terminating \`\\0' characters are not compared.
+The terminating '\\0' characters are not compared.
 
 The
 .BR strcasestr ()
index 1f0a594e8dbc5050b3af68bb7de96a51f27dcb73..decd49a3c93dc2d79e8056c429174f121cc19260 100644 (file)
@@ -73,8 +73,8 @@ all,
 .BR strtol ()
 stores the original value of \fInptr\fP in
 \fI*endptr\fP (and returns 0).
-In particular, if \fI*nptr\fP is not `\\0' but \fI**endptr\fP
-is `\\0' on return, the entire string is valid.
+In particular, if \fI*nptr\fP is not '\\0' but \fI**endptr\fP
+is '\\0' on return, the entire string is valid.
 .PP
 The
 .BR strtoll ()
index 9d73da7711a29269453f2b8d5cfc078654232cb8..73ac0ba7498d2533d3c9371cc93fb3fe5412ff26 100644 (file)
@@ -75,8 +75,8 @@ all,
 .BR strtoul ()
 stores the original value of \fInptr\fP in
 \fI*endptr\fP (and returns 0).
-In particular, if \fI*nptr\fP is not `\\0' but \fI**endptr\fP
-is `\\0' on return, the entire string is valid.
+In particular, if \fI*nptr\fP is not '\\0' but \fI**endptr\fP
+is '\\0' on return, the entire string is valid.
 .PP
 The
 .BR strtoull ()
index 059f13f1cb12dc8c6cb057f36564d83d4f46969d..3b2b24edf68fb1fce263cc9a54676c58f923d0c2 100644 (file)
@@ -56,7 +56,7 @@ The
 .BR strxfrm ()
 function returns the number of bytes required to
 store the transformed string in \fIdest\fP excluding the terminating
-`\\0' character.
+'\\0' character.
 If the value returned is \fIn\fP or more, the
 contents of \fIdest\fP are indeterminate.
 .SH "CONFORMING TO"