🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
394 B

  1. #ifndef AL_STRING_H
  2. #define AL_STRING_H
  3. #include <cstddef>
  4. #include <cstring>
  5. namespace al {
  6. /* These would be better served by using a string_view-like span/view with
  7. * case-insensitive char traits.
  8. */
  9. int strcasecmp(const char *str0, const char *str1) noexcept;
  10. int strncasecmp(const char *str0, const char *str1, std::size_t len) noexcept;
  11. } // namespace al
  12. #endif /* AL_STRING_H */