2
0
mirror of https://github.com/boostorg/nowide.git synced 2026-02-14 00:42:53 +00:00
Files
nowide/test/exampleProject/example_main.cpp
2019-12-27 14:26:31 +01:00

21 lines
509 B
C++

//
// Copyright (c) 2019 Alexander Grund
//
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
#include <boost/nowide/args.hpp>
#include <boost/nowide/convert.hpp>
int main(int argc, char **argv, char **env)
{
boost::nowide::args _(argc, argv, env);
if(argc < 1)
return 1;
if(boost::nowide::narrow(boost::nowide::widen(argv[0])) != argv[0])
return 1;
return 0;
}