Merge branch 'master' of github.com:bkaradzic/bx

This commit is contained in:
Бранимир Караџић
2019-03-03 15:16:51 -08:00
2 changed files with 12 additions and 4 deletions

View File

@@ -21,6 +21,7 @@ namespace bx
};
/// Non-zero-terminated string view.
///
class StringView
{
public:
@@ -77,9 +78,16 @@ namespace bx
///
void clear();
/// Returns pointer to non-terminated string.
///
/// @attention Use of this pointer in standard C/C++ functions is not safe. You must use it
/// in conjunction with `getTerm()` or getLength()`.
///
const char* getPtr() const;
/// Returns pointer past last character in string view.
///
/// @attention Dereferencing this pointer is not safe.
///
const char* getTerm() const;

View File

@@ -20,12 +20,12 @@
# if BX_CONFIG_CRT_DIRECTORY_READER
# include <dirent.h>
# endif // BX_CONFIG_CRT_DIRECTORY_READER
# include <stdio.h> // remove
# include <stdio.h> // remove
# include <sys/stat.h> // stat, mkdir
# if BX_CRT_MSVC
# include <direct.h> // _getcwd
# include <direct.h> // _getcwd
# else
# include <sys/stat.h> // stat, mkdir
# include <unistd.h> // getcwd
# include <unistd.h> // getcwd
# endif // BX_CRT_MSVC
#endif // !BX_CRT_NONE