summaryrefslogtreecommitdiffstats
path: root/common/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/utils.h')
-rw-r--r--common/utils.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/common/utils.h b/common/utils.h
index 8426bc0..2c3acec 100644
--- a/common/utils.h
+++ b/common/utils.h
@@ -1,7 +1,10 @@
1/* 1/*
2 * utils.h 2 * utils.h
3 * Miscellaneous utilities for string manipulation 3 * Miscellaneous utilities for string manipulation,
4 * file I/O and plist helper.
4 * 5 *
6 * Copyright (c) 2014-2019 Nikias Bassen, All Rights Reserved.
7 * Copyright (c) 2013-2014 Martin Szulecki, All Rights Reserved.
5 * Copyright (c) 2013 Federico Mena Quintero 8 * Copyright (c) 2013 Federico Mena Quintero
6 * 9 *
7 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
@@ -39,6 +42,7 @@
39char *stpcpy(char *s1, const char *s2); 42char *stpcpy(char *s1, const char *s2);
40#endif 43#endif
41char *string_concat(const char *str, ...); 44char *string_concat(const char *str, ...);
45char *string_append(char *str, ...);
42char *string_build_path(const char *elem, ...); 46char *string_build_path(const char *elem, ...);
43char *string_format_size(uint64_t size); 47char *string_format_size(uint64_t size);
44char *string_toupper(char *str); 48char *string_toupper(char *str);