]> git.tdb.fi Git - ext/openal.git/blob - common/alstring.h
Import OpenAL Soft 1.23.1 sources
[ext/openal.git] / common / alstring.h
1 #ifndef AL_STRING_H
2 #define AL_STRING_H
3
4 #include <cstddef>
5 #include <cstring>
6
7
8 namespace al {
9
10 /* These would be better served by using a string_view-like span/view with
11  * case-insensitive char traits.
12  */
13 int strcasecmp(const char *str0, const char *str1) noexcept;
14 int strncasecmp(const char *str0, const char *str1, std::size_t len) noexcept;
15
16 } // namespace al
17
18 #endif /* AL_STRING_H */