/**
 * @file
 * @brief C++ forwarding header
 * @date 10.02.14
 * @author Ilia Vaprol
 */

#ifndef CWCHAR_
#define CWCHAR_

#include <wchar.h>

namespace std {
	using ::mbstate_t;
	using ::vswprintf;
	using ::wcstol;
	using ::wcstoul;
	using ::wcstoll;
	using ::wcstoull;
	using ::wcstof;
	using ::wcstod;
	using ::wcstold;
}

#endif // CWCHAR_
