LCOV - code coverage report
Current view: top level - intl/icu/source/common - umath.cpp (source / functions) Hit Total Coverage
Test: output.info Lines: 2 4 50.0 %
Date: 2017-07-14 16:53:18 Functions: 1 2 50.0 %
Legend: Lines: hit not hit

          Line data    Source code
       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           0 : uprv_max(int32_t x, int32_t y)
      17             : {
      18           0 :     return (x > y ? x : y);
      19             : }
      20             : 
      21             : U_CAPI int32_t U_EXPORT2
      22          33 : uprv_min(int32_t x, int32_t y)
      23             : {
      24          33 :     return (x > y ? y : x);
      25             : }
      26             : 

Generated by: LCOV version 1.13