/
githubmirror
/
icu
Обзор
Документация
Войти
/
githubmirror
/
icu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tools/release/c/uconfig-simpleTest.cpp
14 строк
408 B
Yoshito Umaoka
ICU-13358 Fixed cpyscan problems. Enhanced cpyscan.pl to use online version of cpyskip.txt by default. Added the new Unicode copyright comment in many tools files.
03 окт 2017, 05:32
03 окт 2017, 05:32
1870215
Код
Авторство
О чём код?
// © 2017 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* Copyright (c) 2014 IBM Corporation and Others. All Rights Reserved. */ #include <stdio.h> #include <unicode/putil.h> #include <unicode/uclean.h> int main() { UErrorCode status = U_ZERO_ERROR; u_init(&status); puts(u_errorName(status)); u_cleanup(); return U_FAILURE(status)?1:0; }