1041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' TurnerThis is a small library that extends the Android C library (Bionic),
2041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turnerby adding:
3041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner
4041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner- better wchar_t support.
5041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner
6041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner- long double functions (simple wrappers really, since 'long double' is
7041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  equal to 'double' on Android).
8041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner
9041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner- multibyte support (using UTF-8 as the only supported multibyte encoding).
10041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner
11041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner- locale-specific variants of C library functions.
12041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner
13041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' TurnerMany things are still incomplete.
14041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner
15041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' TurnerThe sources under the following directories come from the Musl C library:
16041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner
17041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  src/musl-ctype
18041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  src/musl-multibyte
19041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner
20041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' TurnerMost of them do not have a copyright disclaimer, this is intentional,
21041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turnerand how the sources appear in the Musl source tree. They are either in
22041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turnerthe public domain, or covered by the following classic
23041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' TurnerMIT-style license:
24041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner
25041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  Copyright © 2005-2012 Rich Felker
26041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner
27041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  Permission is hereby granted, free of charge, to any person obtaining
28041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  a copy of this software and associated documentation files (the
29041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  "Software"), to deal in the Software without restriction, including
30041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  without limitation the rights to use, copy, modify, merge, publish,
31041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  distribute, sublicense, and/or sell copies of the Software, and to
32041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  permit persons to whom the Software is furnished to do so, subject to
33041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  the following conditions:
34041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner
35041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  The above copyright notice and this permission notice shall be
36041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  included in all copies or substantial portions of the Software.
37041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner
38041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
39041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
40041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
41041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
42041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
43041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
44041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
45041656818eb2625982d4b55d176468a4bd07fb32David 'Digit' Turner
46