• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // © 2017 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /* Copyright (c) 2014 IBM Corporation and Others. All Rights Reserved. */
4 #include <stdio.h>
5 #include <unicode/putil.h>
6 #include <unicode/uclean.h>
7 
main()8 int main() {
9   UErrorCode status = U_ZERO_ERROR;
10   u_init(&status);
11   puts(u_errorName(status));
12   u_cleanup();
13   return U_FAILURE(status)?1:0;
14 }
15