tiny-shell 0.2
A mini shell project aiming to gain knowledge about Win32 and Linux API
Loading...
Searching...
No Matches
type.h
Go to the documentation of this file.
1#pragma once
2
3#ifdef _WIN32
4# include <windows.h>
5# define os_char TCHAR
6#elif defined(__linux__)
7# define os_char char
8#endif