12345678910111213141516171819202122232425262728293031323334 |
- #pragma once
- #include "bitwise.h"
- #define LSTR(s) XLSTR(s)
- #define XLSTR(s) L## #s
- #define STR(s) XSTR(s)
- #define XSTR(s) #s
- #if !defined(MIN)
- # define MIN(x, y) (((x) < (y)) ? (x) : (y))
- #endif
- #if !defined(MAX)
- # define MAX(x, y) (((x) > (y)) ? (x) : (y))
- #endif
|