20 lines
351 B
C
20 lines
351 B
C
|
|
#pragma once
|
|
|
|
#if !defined(BAD_APPLE_OS_STRING_H_INCLUDED)
|
|
#define BAD_APPLE_OS_STRING_H_INCLUDED
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "./detail/attributes.h"
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
BA_CXX_NODISCARD size_t strlen(const char* str) BA_CXX_NOEXCEPT;
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif // !defined(BAD_APPLE_OS_STRING_H_INCLUDED)
|