🛠️🐜 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.

17 lines
375 B

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