xref: /aosp_15_r20/external/icu/libicu/cts_headers/double-conversion.h (revision 0e209d3975ff4a8c132096b14b0e9364a753506e)
1*0e209d39SAndroid Build Coastguard Worker // © 2018 and later: Unicode, Inc. and others.
2*0e209d39SAndroid Build Coastguard Worker // License & terms of use: http://www.unicode.org/copyright.html
3*0e209d39SAndroid Build Coastguard Worker //
4*0e209d39SAndroid Build Coastguard Worker // From the double-conversion library. Original license:
5*0e209d39SAndroid Build Coastguard Worker //
6*0e209d39SAndroid Build Coastguard Worker // Copyright 2012 the V8 project authors. All rights reserved.
7*0e209d39SAndroid Build Coastguard Worker // Redistribution and use in source and binary forms, with or without
8*0e209d39SAndroid Build Coastguard Worker // modification, are permitted provided that the following conditions are
9*0e209d39SAndroid Build Coastguard Worker // met:
10*0e209d39SAndroid Build Coastguard Worker //
11*0e209d39SAndroid Build Coastguard Worker //     * Redistributions of source code must retain the above copyright
12*0e209d39SAndroid Build Coastguard Worker //       notice, this list of conditions and the following disclaimer.
13*0e209d39SAndroid Build Coastguard Worker //     * Redistributions in binary form must reproduce the above
14*0e209d39SAndroid Build Coastguard Worker //       copyright notice, this list of conditions and the following
15*0e209d39SAndroid Build Coastguard Worker //       disclaimer in the documentation and/or other materials provided
16*0e209d39SAndroid Build Coastguard Worker //       with the distribution.
17*0e209d39SAndroid Build Coastguard Worker //     * Neither the name of Google Inc. nor the names of its
18*0e209d39SAndroid Build Coastguard Worker //       contributors may be used to endorse or promote products derived
19*0e209d39SAndroid Build Coastguard Worker //       from this software without specific prior written permission.
20*0e209d39SAndroid Build Coastguard Worker //
21*0e209d39SAndroid Build Coastguard Worker // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22*0e209d39SAndroid Build Coastguard Worker // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23*0e209d39SAndroid Build Coastguard Worker // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24*0e209d39SAndroid Build Coastguard Worker // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25*0e209d39SAndroid Build Coastguard Worker // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26*0e209d39SAndroid Build Coastguard Worker // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27*0e209d39SAndroid Build Coastguard Worker // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28*0e209d39SAndroid Build Coastguard Worker // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29*0e209d39SAndroid Build Coastguard Worker // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30*0e209d39SAndroid Build Coastguard Worker // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31*0e209d39SAndroid Build Coastguard Worker // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32*0e209d39SAndroid Build Coastguard Worker 
33*0e209d39SAndroid Build Coastguard Worker // ICU PATCH: ifdef around UCONFIG_NO_FORMATTING
34*0e209d39SAndroid Build Coastguard Worker #include "unicode/utypes.h"
35*0e209d39SAndroid Build Coastguard Worker #if !UCONFIG_NO_FORMATTING
36*0e209d39SAndroid Build Coastguard Worker 
37*0e209d39SAndroid Build Coastguard Worker #ifndef DOUBLE_CONVERSION_DOUBLE_CONVERSION_H_
38*0e209d39SAndroid Build Coastguard Worker #define DOUBLE_CONVERSION_DOUBLE_CONVERSION_H_
39*0e209d39SAndroid Build Coastguard Worker 
40*0e209d39SAndroid Build Coastguard Worker // ICU PATCH: Customize header file paths for ICU.
41*0e209d39SAndroid Build Coastguard Worker 
42*0e209d39SAndroid Build Coastguard Worker #include "double-conversion-string-to-double.h"
43*0e209d39SAndroid Build Coastguard Worker #include "double-conversion-double-to-string.h"
44*0e209d39SAndroid Build Coastguard Worker 
45*0e209d39SAndroid Build Coastguard Worker #endif  // DOUBLE_CONVERSION_DOUBLE_CONVERSION_H_
46*0e209d39SAndroid Build Coastguard Worker #endif // ICU PATCH: close #if !UCONFIG_NO_FORMATTING
47