VERSIONS: strchrnul() since glibc 2.1.1.

This commit is contained in:
Michael Kerrisk 2008-08-11 20:13:58 +00:00
parent 2ee2e7eb1f
commit 266b5355cf
1 changed files with 4 additions and 1 deletions

View File

@ -28,7 +28,7 @@
.\" 2006-05-19, Justin Pryzby <pryzbyj@justinpryzby.com>
.\" Document strchrnul(3).
.\"
.TH STRCHR 3 2006-05-19 "GNU" "Linux Programmer's Manual"
.TH STRCHR 3 2008-08-11 "GNU" "Linux Programmer's Manual"
.SH NAME
strchr, strrchr, strchrnul \- locate character in string
.SH SYNOPSIS
@ -80,6 +80,9 @@ the matched character,
or a pointer to the null
byte at the end of \fIs\fP (i.e., \fIs+strlen(s)\fP)
if the character is not found.
.SH VERSIONS
.BR strchrnul ()
first appeared in glibc in version 2.1.1.
.SH "CONFORMING TO"
.BR strchr ()
and