mirror of
https://github.com/zeldaret/st
synced 2026-06-29 03:10:53 -04:00
b116e79e9f
* UnkStruct_027e09b8_001 OK * match func_ov001_020b7830 * fix build issues * UnkStruct_027e0cd8_001 49% * UnkStruct_027e0cd8_001 OK * fix build issues * UnkStruct_027e0cd8_0C_001 92% * port some MSL C++ headers from rb3 and key decomps * fix build issues * UnkStruct_027e0cd8_0C_001 98%
40 lines
659 B
Plaintext
40 lines
659 B
Plaintext
#ifndef _STD_CSTRING_H
|
|
#define _STD_CSTRING_H
|
|
|
|
// from rb3 decomp
|
|
|
|
#include <string.h>
|
|
#include <mem.h>
|
|
|
|
namespace std {
|
|
using ::size_t;
|
|
|
|
using ::memchr;
|
|
using ::memcmp;
|
|
using ::memcpy;
|
|
using ::memmove;
|
|
using ::memset;
|
|
|
|
// using ::strcat;
|
|
using ::strcpy;
|
|
// using ::strncat;
|
|
using ::strncpy;
|
|
// using ::strxfrm;
|
|
|
|
// using ::strchr;
|
|
using ::strcmp;
|
|
// using ::strcoll;
|
|
// using ::strcspn;
|
|
using ::strlen;
|
|
using ::strncmp;
|
|
// using ::strpbrk;
|
|
// using ::strrchr;
|
|
// using ::strspn;
|
|
// using ::strstr;
|
|
// using ::strtok;
|
|
|
|
// using ::strerror;
|
|
} // namespace std
|
|
|
|
#endif
|