util/String{Compare,API}: indent with tabs

This commit is contained in:
Max Kellermann 2017-05-16 23:01:43 +02:00
parent ab8005f03e
commit 0fcc28a108
3 changed files with 6 additions and 6 deletions

View File

@ -106,11 +106,11 @@ static inline char *
UnsafeCopyStringP(char *dest, const char *src) noexcept
{
#if defined(WIN32) || defined(__BIONIC__)
/* emulate stpcpy() */
UnsafeCopyString(dest, src);
return dest + StringLength(dest);
/* emulate stpcpy() */
UnsafeCopyString(dest, src);
return dest + StringLength(dest);
#else
return stpcpy(dest, src);
return stpcpy(dest, src);
#endif
}

View File

@ -40,7 +40,7 @@
static inline bool
StringIsEmpty(const char *string)
{
return *string == 0;
return *string == 0;
}
gcc_pure gcc_nonnull_all

View File

@ -37,7 +37,7 @@
static inline bool
StringIsEmpty(const wchar_t *string)
{
return *string == 0;
return *string == 0;
}
gcc_pure