mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
15 lines
215 B
C++
15 lines
215 B
C++
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
FileIn in("34523");
|
|
DUMP(errno);
|
|
DUMP(strerror(errno));
|
|
char h[100];
|
|
DUMP(strerror_r(errno, h, 100));
|
|
DUMP(h);
|
|
DUMP(GetLastErrorMessage());
|
|
}
|
|
|