aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/scripts/test_ports/vcpkg-ci-icu/project/main.c
blob: 4054c74124ef9310867fe9f45744f9fcb4e5ca2d (plain)
1
2
3
4
5
6
7
8
9
#include "unicode/udat.h"

int main()
{
    UErrorCode status = U_ZERO_ERROR;
    UDateFormat* dateFormatter = udat_open(UDAT_NONE, UDAT_SHORT, NULL, NULL, -1, NULL, 0, &status);
    udat_close(dateFormatter);
    return 0;
}