• Home
  • History
  • Annotate
  • only in /ndk/sources/android/support/
NameDateSize

..07-Jan-20164 KiB

Android.mk07-Jan-20165.1 KiB

include/07-Jan-20164 KiB

README07-Jan-20161.8 KiB

src/07-Jan-20164 KiB

tests/07-Jan-20164 KiB

README

1This is a small library that extends the Android C library (Bionic),
2by adding:
3
4- better wchar_t support.
5
6- long double functions (simple wrappers really, since 'long double' is
7  equal to 'double' on Android).
8
9- multibyte support (using UTF-8 as the only supported multibyte encoding).
10
11- locale-specific variants of C library functions.
12
13Many things are still incomplete.
14
15The sources under the following directories come from the Musl C library:
16
17  src/musl-ctype
18  src/musl-multibyte
19
20Most of them do not have a copyright disclaimer, this is intentional,
21and how the sources appear in the Musl source tree. They are either in
22the public domain, or covered by the following classic
23MIT-style license:
24
25  Copyright © 2005-2012 Rich Felker
26
27  Permission is hereby granted, free of charge, to any person obtaining
28  a copy of this software and associated documentation files (the
29  "Software"), to deal in the Software without restriction, including
30  without limitation the rights to use, copy, modify, merge, publish,
31  distribute, sublicense, and/or sell copies of the Software, and to
32  permit persons to whom the Software is furnished to do so, subject to
33  the following conditions:
34
35  The above copyright notice and this permission notice shall be
36  included in all copies or substantial portions of the Software.
37
38  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
39  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
40  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
41  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
42  CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
43  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
44  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
45
46