Make sure FX slots that aren't made active are disabled
[openal-soft.git] / common / alstring.h
blobf5127aede293a21e0992a78f1d910fe29502c0eb
1 #ifndef AL_STRING_H
2 #define AL_STRING_H
4 #include <cstddef>
7 namespace al {
9 /* These would be better served by using a string_view-like span/view with
10 * case-insensitive char traits.
12 int strcasecmp(const char *str0, const char *str1) noexcept;
13 int strncasecmp(const char *str0, const char *str1, std::size_t len) noexcept;
15 } // namespace al
17 #endif /* AL_STRING_H */