12e5b6d6dSopenharmony_ci// © 2017 and later: Unicode, Inc. and others. 22e5b6d6dSopenharmony_ci// License & terms of use: http://www.unicode.org/copyright.html 32e5b6d6dSopenharmony_ci/* Copyright (c) 2014 IBM Corporation and Others. All Rights Reserved. */ 42e5b6d6dSopenharmony_ci#include <stdio.h> 52e5b6d6dSopenharmony_ci#include <unicode/putil.h> 62e5b6d6dSopenharmony_ci#include <unicode/uclean.h> 72e5b6d6dSopenharmony_ci 82e5b6d6dSopenharmony_ciint main() { 92e5b6d6dSopenharmony_ci UErrorCode status = U_ZERO_ERROR; 102e5b6d6dSopenharmony_ci u_init(&status); 112e5b6d6dSopenharmony_ci puts(u_errorName(status)); 122e5b6d6dSopenharmony_ci u_cleanup(); 132e5b6d6dSopenharmony_ci return U_FAILURE(status)?1:0; 142e5b6d6dSopenharmony_ci} 15