summaryrefslogtreecommitdiff
path: root/src/string_func.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/string_func.h')
-rw-r--r--src/string_func.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/string_func.h b/src/string_func.h
index ff12f3747..1f622870e 100644
--- a/src/string_func.h
+++ b/src/string_func.h
@@ -33,7 +33,7 @@
char *strecat(char *dst, const char *src, const char *last);
char *strecpy(char *dst, const char *src, const char *last);
-char *stredup(const char *src, const char *last = NULL);
+char *stredup(const char *src, const char *last = nullptr);
int CDECL seprintf(char *str, const char *last, const char *format, ...) WARN_FORMAT(3, 4);
int CDECL vseprintf(char *str, const char *last, const char *format, va_list ap);
@@ -54,11 +54,11 @@ bool StrValid(const char *str, const char *last);
*
* @param s The pointer to the first element of the buffer
* @return true if the buffer starts with the terminating null-character or
- * if the given pointer points to NULL else return false
+ * if the given pointer points to nullptr else return false
*/
static inline bool StrEmpty(const char *s)
{
- return s == NULL || s[0] == '\0';
+ return s == nullptr || s[0] == '\0';
}
/**