summaryrefslogtreecommitdiffstats
path: root/common/utils.h
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2019-11-13 09:06:41 +0100
committerGravatar Nikias Bassen2019-11-13 09:06:41 +0100
commitaf91dc6376946daffd5c9ece916d9f33af828890 (patch)
treec87414ff6bb7d9a29a0eef52532087ff9f268469 /common/utils.h
parent7dbc17f2c763a7b18bc1a867f39918c26bb5e9e5 (diff)
downloadlibimobiledevice-af91dc6376946daffd5c9ece916d9f33af828890.tar.gz
libimobiledevice-af91dc6376946daffd5c9ece916d9f33af828890.tar.bz2
debugserver: Improved memory handling in debugserver_client_send_command() and debugserver_client_receive_response()
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 @@
/*
* utils.h
- * Miscellaneous utilities for string manipulation
+ * Miscellaneous utilities for string manipulation,
+ * file I/O and plist helper.
*
+ * Copyright (c) 2014-2019 Nikias Bassen, All Rights Reserved.
+ * Copyright (c) 2013-2014 Martin Szulecki, All Rights Reserved.
* Copyright (c) 2013 Federico Mena Quintero
*
* This library is free software; you can redistribute it and/or
@@ -39,6 +42,7 @@
char *stpcpy(char *s1, const char *s2);
#endif
char *string_concat(const char *str, ...);
+char *string_append(char *str, ...);
char *string_build_path(const char *elem, ...);
char *string_format_size(uint64_t size);
char *string_toupper(char *str);