mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2025-02-24 02:22:06 +01:00
24 lines
438 B
C++
24 lines
438 B
C++
//
|
|
// main.cpp
|
|
// cpp_tests
|
|
//
|
|
// Created by jief on 23.02.20.
|
|
// Copyright © 2020 JF Knudsen. All rights reserved.
|
|
//
|
|
|
|
#include <iostream>
|
|
#include <locale.h>
|
|
|
|
#include "../../../rEFIt_UEFI/cpp_unit_test/all_tests.h"
|
|
|
|
|
|
extern "C" int main(int argc, const char * argv[])
|
|
{
|
|
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();
|
|
}
|