<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/lib/libc/string/strstr.3, branch release/6.0.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>2005-11-03T00:35:26+00:00</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2005-11-03T00:35:26+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=3640cb54210edbb7edbf1b12ef0127ecfcea967d'/>
<id>3640cb54210edbb7edbf1b12ef0127ecfcea967d</id>
<content type='text'>
'RELENG_6_0_0_RELEASE'.

This commit was manufactured to restore the state of the 6.0-RELEASE image.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
'RELENG_6_0_0_RELEASE'.

This commit was manufactured to restore the state of the 6.0-RELEASE image.
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC addition of memmem(3).</title>
<updated>2005-08-29T18:46:39+00:00</updated>
<author>
<name>Andre Oppermann</name>
<email>andre@FreeBSD.org</email>
</author>
<published>2005-08-29T18:46:39+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=d77468cac385ff47c23de7024e38f6fbb98dbfdc'/>
<id>d77468cac385ff47c23de7024e38f6fbb98dbfdc</id>
<content type='text'>
Submitted by:	Pascal Gloor &lt;pascal.gloor at spale.com&gt;
Approved by:	re (scottl)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Submitted by:	Pascal Gloor &lt;pascal.gloor at spale.com&gt;
Approved by:	re (scottl)
</pre>
</div>
</content>
</entry>
<entry>
<title>mdoc(7) police: minor markup and spelling fixes.</title>
<updated>2001-11-20T14:11:07+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2001-11-20T14:11:07+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=1ddfc2e3aa6e4fc228b1c646c802161fcff64223'/>
<id>1ddfc2e3aa6e4fc228b1c646c802161fcff64223</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Clarify that strnstr() will stop searching after in encounters a NUL</title>
<updated>2001-10-11T15:49:06+00:00</updated>
<author>
<name>Mike Barcroft</name>
<email>mike@FreeBSD.org</email>
</author>
<published>2001-10-11T15:49:06+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=a9227c40eb16696de3b96947b035df60b410eb9b'/>
<id>a9227c40eb16696de3b96947b035df60b410eb9b</id>
<content type='text'>
character.  Bump document date.  Add a missing comma.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
character.  Bump document date.  Add a missing comma.
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement strcasestr() which many others (f.e. Linux) already have.</title>
<updated>2001-10-10T02:17:35+00:00</updated>
<author>
<name>Andrey A. Chernov</name>
<email>ache@FreeBSD.org</email>
</author>
<published>2001-10-10T02:17:35+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=89503316a038ddfd04ea8491974e05d1baa5e531'/>
<id>89503316a038ddfd04ea8491974e05d1baa5e531</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Document the fact that the strnstr(3) function is not portable.</title>
<updated>2001-10-09T17:22:02+00:00</updated>
<author>
<name>Mike Barcroft</name>
<email>mike@FreeBSD.org</email>
</author>
<published>2001-10-09T17:22:02+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=7ec7a350c5fb6677d2d47b2ca064d88cd90b34e6'/>
<id>7ec7a350c5fb6677d2d47b2ca064d88cd90b34e6</id>
<content type='text'>
Requested by:	brian, gad
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Requested by:	brian, gad
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a new libc function, strnstr(3), which allows one to limit the</title>
<updated>2001-10-09T01:29:56+00:00</updated>
<author>
<name>Mike Barcroft</name>
<email>mike@FreeBSD.org</email>
</author>
<published>2001-10-09T01:29:56+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=41036d782dab06714e1f93c6bb47ed22ac8747af'/>
<id>41036d782dab06714e1f93c6bb47ed22ac8747af</id>
<content type='text'>
number of characters that are searched.  This is especially useful
with file operations and non-NUL terminated strings.

Silence from:	-audit, -hackers
MFC after:	5 days
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
number of characters that are searched.  This is especially useful
with file operations and non-NUL terminated strings.

Silence from:	-audit, -hackers
MFC after:	5 days
</pre>
</div>
</content>
</entry>
<entry>
<title>mdoc(7) police: Use the new .In macro for #include statements.</title>
<updated>2001-10-01T16:09:29+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2001-10-01T16:09:29+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=32eef9aeb1f39a1623cea55da147c89abbd5b9a5'/>
<id>32eef9aeb1f39a1623cea55da147c89abbd5b9a5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>.St -ansiC -&gt; .St -isoC</title>
<updated>2001-02-26T13:23:47+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2001-02-26T13:23:47+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=588a200ce1e5c42fc09771659c6a1f9af0ee7857'/>
<id>588a200ce1e5c42fc09771659c6a1f9af0ee7857</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Drop the references to index(3) and rindex(3), which are non-standard</title>
<updated>2000-07-18T08:05:11+00:00</updated>
<author>
<name>Alexander Langer</name>
<email>alex@FreeBSD.org</email>
</author>
<published>2000-07-18T08:05:11+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=6e145859ff8ac9ed66d0f8c0d6f5adf0801098c4'/>
<id>6e145859ff8ac9ed66d0f8c0d6f5adf0801098c4</id>
<content type='text'>
and people shouldn't be encouraged to use them.

Asked by:	sheldonh
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
and people shouldn't be encouraged to use them.

Asked by:	sheldonh
</pre>
</div>
</content>
</entry>
</feed>
