<feed xmlns='http://www.w3.org/2005/Atom'>
<title>musl/src/string, branch v0.9.4</title>
<subtitle>musl - an implementation of the standard library for Linux-based systems</subtitle>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/'/>
<entry>
<title>memcpy asm for i386 and x86_64</title>
<updated>2012-08-12T01:33:13+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2012-08-12T01:33:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=aaa9eb5101e3a748218fb9373dd9655b50582da2'/>
<id>aaa9eb5101e3a748218fb9373dd9655b50582da2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove unused but buggy code from strstr.c</title>
<updated>2012-08-11T22:40:33+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2012-08-11T22:40:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=f997e224fc30361fe683c6b5d0ba39718043ca8d'/>
<id>f997e224fc30361fe683c6b5d0ba39718043ca8d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove buggy short-string wcsstr implementation; always use twoway</title>
<updated>2012-08-11T22:39:12+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2012-08-11T22:39:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=35c16933f03a3db49f3e2048759d850460c8a509'/>
<id>35c16933f03a3db49f3e2048759d850460c8a509</id>
<content type='text'>
since this interface is rarely used, it's probably best to lean
towards keeping code size down anyway. one-character needles will
still be found immediately by the initial wcschr call anyway.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
since this interface is rarely used, it's probably best to lean
towards keeping code size down anyway. one-character needles will
still be found immediately by the initial wcschr call anyway.
</pre>
</div>
</content>
</entry>
<entry>
<title>optimize mempcpy to minimize need for data saved across the call</title>
<updated>2012-08-01T01:18:17+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2012-08-01T01:18:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=970ef6a1240adfd685c27bf3407dfd06606a17e8'/>
<id>970ef6a1240adfd685c27bf3407dfd06606a17e8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>make strerror_r behave nicer on failure</title>
<updated>2012-06-20T16:07:18+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2012-06-20T16:07:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=f313a1622448de578ab0b11a881f44a02c9082e6'/>
<id>f313a1622448de578ab0b11a881f44a02c9082e6</id>
<content type='text'>
if the buffer is too short, at least return a partial string. this is
helpful if the caller is lazy and does not check for failure. care is
taken to avoid writing anything if the buffer length is zero, and to
always null-terminate when the buffer length is non-zero.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
if the buffer is too short, at least return a partial string. this is
helpful if the caller is lazy and does not check for failure. care is
taken to avoid writing anything if the buffer length is zero, and to
always null-terminate when the buffer length is non-zero.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix overrun (n essentially ignored) in wcsncmp</title>
<updated>2012-05-26T22:04:17+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2012-05-26T22:04:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=054ba185999d29f6ae9a8e19549da95f783655b6'/>
<id>054ba185999d29f6ae9a8e19549da95f783655b6</id>
<content type='text'>
bug report and solution by Richard Pennington
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
bug report and solution by Richard Pennington
</pre>
</div>
</content>
</entry>
<entry>
<title>fix failure of strrchr(str, 0)</title>
<updated>2012-05-26T22:01:34+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2012-05-26T22:01:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=aefd0f69bd22b825a6196e65b40a02e79fec23b5'/>
<id>aefd0f69bd22b825a6196e65b40a02e79fec23b5</id>
<content type='text'>
bug report and solution by Richard Pennington
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
bug report and solution by Richard Pennington
</pre>
</div>
</content>
</entry>
<entry>
<title>add all missing wchar functions except floating point parsers</title>
<updated>2012-03-02T04:24:45+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2012-03-02T04:24:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=e0614f7cd418afedd06c9bcd5abb965608bc52f8'/>
<id>e0614f7cd418afedd06c9bcd5abb965608bc52f8</id>
<content type='text'>
these are mostly untested and adapted directly from corresponding byte
string functions and similar.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
these are mostly untested and adapted directly from corresponding byte
string functions and similar.
</pre>
</div>
</content>
</entry>
<entry>
<title>add dummied strverscmp (obnoxious GNU function)</title>
<updated>2011-09-12T02:45:56+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-09-12T02:45:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=a6540174be064806b6eb4dc6abff48a9b4facfdd'/>
<id>a6540174be064806b6eb4dc6abff48a9b4facfdd</id>
<content type='text'>
programs that use this tend to horribly botch international text
support, so it's questionable whether we want to support it even in
the long term... for now, it's just a dummy that calls strcmp.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
programs that use this tend to horribly botch international text
support, so it's questionable whether we want to support it even in
the long term... for now, it's just a dummy that calls strcmp.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix wrong type for wcsrchr argument 2</title>
<updated>2011-06-13T18:06:04+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-06-13T18:06:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=73d2fde1195401dfb87935f46126f9481af1a8c3'/>
<id>73d2fde1195401dfb87935f46126f9481af1a8c3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
