Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenlib/BLI_string.h
| Show First 20 Lines • Show All 85 Lines • ▼ Show 20 Lines | |||||
| char *BLI_sprintfN(const char *__restrict format, ...) ATTR_WARN_UNUSED_RESULT | char *BLI_sprintfN(const char *__restrict format, ...) ATTR_WARN_UNUSED_RESULT | ||||
| ATTR_NONNULL(1) ATTR_MALLOC ATTR_PRINTF_FORMAT(1, 2); | ATTR_NONNULL(1) ATTR_MALLOC ATTR_PRINTF_FORMAT(1, 2); | ||||
| size_t BLI_strescape(char *__restrict dst, const char *__restrict src, const size_t maxncpy) | size_t BLI_strescape(char *__restrict dst, const char *__restrict src, const size_t maxncpy) | ||||
| ATTR_NONNULL(); | ATTR_NONNULL(); | ||||
| size_t BLI_str_format_int_grouped(char dst[16], int num) ATTR_NONNULL(); | size_t BLI_str_format_int_grouped(char dst[16], int num) ATTR_NONNULL(); | ||||
| size_t BLI_str_format_uint64_grouped(char dst[16], uint64_t num) ATTR_NONNULL(); | size_t BLI_str_format_uint64_grouped(char dst[16], uint64_t num) ATTR_NONNULL(); | ||||
| void BLI_str_format_byte_unit(char dst[15], long long int size, const bool base_10) ATTR_NONNULL(); | void BLI_str_format_byte_unit(char dst[15], long long int size) ATTR_NONNULL(); | ||||
| int BLI_strcaseeq(const char *a, const char *b) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | int BLI_strcaseeq(const char *a, const char *b) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | ||||
| char *BLI_strcasestr(const char *s, const char *find) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | char *BLI_strcasestr(const char *s, const char *find) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | ||||
| char *BLI_strncasestr(const char *s, const char *find, size_t len) ATTR_WARN_UNUSED_RESULT | char *BLI_strncasestr(const char *s, const char *find, size_t len) ATTR_WARN_UNUSED_RESULT | ||||
| ATTR_NONNULL(); | ATTR_NONNULL(); | ||||
| int BLI_strcasecmp(const char *s1, const char *s2) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | int BLI_strcasecmp(const char *s1, const char *s2) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | ||||
| int BLI_strncasecmp(const char *s1, const char *s2, size_t len) ATTR_WARN_UNUSED_RESULT | int BLI_strncasecmp(const char *s1, const char *s2, size_t len) ATTR_WARN_UNUSED_RESULT | ||||
| ATTR_NONNULL(); | ATTR_NONNULL(); | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||