First Commit

This commit is contained in:
2025-02-06 22:24:29 +08:00
parent ed7df4c81e
commit 7539e6a53c
18116 changed files with 6181499 additions and 0 deletions

18
externals/openal-soft/common/alstring.h vendored Normal file
View File

@@ -0,0 +1,18 @@
#ifndef AL_STRING_H
#define AL_STRING_H
#include <cstddef>
#include <cstring>
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 */