Home | History | Annotate | only in /ndk/sources/android/support
Up to higher level directory
NameDateSize
Android.mk05-Aug-20156K
include/05-Aug-2015
README05-Aug-20151.8K
src/05-Aug-2015
tests/05-Aug-2015

README

      1 This is a small library that extends the Android C library (Bionic),
      2 by 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 
     13 Many things are still incomplete.
     14 
     15 The sources under the following directories come from the Musl C library:
     16 
     17   src/musl-ctype
     18   src/musl-multibyte
     19 
     20 Most of them do not have a copyright disclaimer, this is intentional,
     21 and how the sources appear in the Musl source tree. They are either in
     22 the public domain, or covered by the following classic
     23 MIT-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