CloverBootloader/Xcode/cpp_tests/src/main.cpp

24 lines
438 B
C++
Raw Normal View History

//
// main.cpp
// cpp_tests
//
// Created by jief on 23.02.20.
// Copyright © 2020 JF Knudsen. All rights reserved.
//
#include <iostream>
2020-02-24 14:07:59 +01:00
#include <locale.h>
#include "../../../rEFIt_UEFI/cpp_unit_test/all_tests.h"
2020-02-24 14:07:59 +01:00
extern "C" int main(int argc, const char * argv[])
{
2020-02-24 14:07:59 +01:00
setlocale(LC_ALL, "en_US"); // to allow printf unicode char
printf("sizeof(wchar_t)=%lu\n", sizeof(wchar_t));
printf("%lc\n", L'Ľ');
return all_tests();
}