15 lines
216 B
Plaintext
15 lines
216 B
Plaintext
|
|
#pragma once
|
|
|
|
#if !defined(BAD_APPLE_OS_CSTRING_HPP_INCLUDED)
|
|
#define BAD_APPLE_OS_CSTRING_HPP_INCLUDED
|
|
|
|
#include <string.h>
|
|
|
|
namespace std
|
|
{
|
|
using ::strlen;
|
|
}
|
|
|
|
#endif // !defined(BAD_APPLE_OS_CSTRING_HPP_INCLUDED)
|