blob: b4da51e20c0ef079626296e99aabb5535641dbc7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#if defined(__ANDROID__)
#include "android/nxstring.h"
#elif defined(__linux__)
#include "linux/nxstring.h"
#elif defined(_WIN32)
#include "win/nxstring.h"
#elif defined(__APPLE__)
#include "osx/nxstring.h"
#endif
|