mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-03 12:30:31 +00:00
18 lines
375 B
C
18 lines
375 B
C
|
|
#ifndef AL_STRING_H
|
||
|
|
#define AL_STRING_H
|
||
|
|
|
||
|
|
#include <cstddef>
|
||
|
|
|
||
|
|
|
||
|
|
namespace al {
|
||
|
|
|
||
|
|
/* These would be better served by using a string_view-like span/view with
|
||
|
|
* case-insensitive char traits.
|
||
|
|
*/
|
||
|
|
int strcasecmp(const char *str0, const char *str1) noexcept;
|
||
|
|
int strncasecmp(const char *str0, const char *str1, std::size_t len) noexcept;
|
||
|
|
|
||
|
|
} // namespace al
|
||
|
|
|
||
|
|
#endif /* AL_STRING_H */
|