/src/icu/source/common/umath.cpp
Line | Count | Source (jump to first uncovered line) |
1 | | // © 2016 and later: Unicode, Inc. and others. |
2 | | // License & terms of use: http://www.unicode.org/copyright.html |
3 | | /* |
4 | | ****************************************************************************** |
5 | | * |
6 | | * Copyright (C) 1997-2006, International Business Machines |
7 | | * Corporation and others. All Rights Reserved. |
8 | | * |
9 | | ****************************************************************************** |
10 | | * This file contains platform independent math. |
11 | | */ |
12 | | |
13 | | #include "putilimp.h" |
14 | | |
15 | | U_CAPI int32_t U_EXPORT2 |
16 | | uprv_max(int32_t x, int32_t y) |
17 | 0 | { |
18 | 0 | return (x > y ? x : y); |
19 | 0 | } |
20 | | |
21 | | U_CAPI int32_t U_EXPORT2 |
22 | | uprv_min(int32_t x, int32_t y) |
23 | 0 | { |
24 | 0 | return (x > y ? y : x); |
25 | 0 | } |
26 | | |