/
githubmirror
/
icu
Обзор
Документация
Войти
/
githubmirror
/
icu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
icu4c/source/common/umath.cpp
25 строк
642 B
Andy Heninger
ICU-12764 icu4c utf-8 source files, update Copyright notices.
20 янв 2017, 03:20
20 янв 2017, 03:20
242e02c
Код
Авторство
О чём код?
// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ****************************************************************************** * * Copyright (C) 1997-2006, International Business Machines * Corporation and others. All Rights Reserved. * ****************************************************************************** * This file contains platform independent math. */ #include "putilimp.h" U_CAPI int32_t U_EXPORT2 uprv_max(int32_t x, int32_t y) { return (x > y ? x : y); } U_CAPI int32_t U_EXPORT2 uprv_min(int32_t x, int32_t y) { return (x > y ? y : x); }