scuffed-code/tools/release/c/uconfig-simpleTest.cpp

15 lines
408 B
C++

// © 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;
}