aboutsummaryrefslogtreecommitdiffstats
path: root/common/stringop.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/stringop.c')
-rw-r--r--common/stringop.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/common/stringop.c b/common/stringop.c
index 4a37543d..d9ae9925 100644
--- a/common/stringop.c
+++ b/common/stringop.c
@@ -55,6 +55,20 @@ void strip_quotes(char *str) {
55 *end = '\0'; 55 *end = '\0';
56} 56}
57 57
58char *lenient_strcat(char *dest, const char *src) {
59 if (dest && src) {
60 return strcat(dest, src);
61 }
62 return dest;
63}
64
65char *lenient_strncat(char *dest, const char *src, size_t len) {
66 if (dest && src) {
67 return strncat(dest, src, len);
68 }
69 return dest;
70}
71
58// strcmp that also handles null pointers. 72// strcmp that also handles null pointers.
59int lenient_strcmp(char *a, char *b) { 73int lenient_strcmp(char *a, char *b) {
60 if (a == b) { 74 if (a == b) {