summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/libssh/libssh.h1
-rw-r--r--libssh/string.c9
2 files changed, 10 insertions, 0 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index d2ad0e4..4100f03 100644
--- a/include/libssh/libssh.h
+++ b/include/libssh/libssh.h
@@ -449,6 +449,7 @@ LIBSSH_API ssh_string ssh_string_from_char(const char *what);
LIBSSH_API size_t ssh_string_len(ssh_string str);
LIBSSH_API ssh_string ssh_string_new(size_t size);
LIBSSH_API char *ssh_string_to_char(ssh_string str);
+LIBSSH_API void ssh_string_free_char(char *s);
#ifndef LIBSSH_LEGACY_0_4
#include "libssh/legacy.h"
diff --git a/libssh/string.c b/libssh/string.c
index 0a036ad..394179f 100644
--- a/libssh/string.c
+++ b/libssh/string.c
@@ -143,6 +143,15 @@ char *ssh_string_to_char(struct ssh_string_struct *s) {
}
/**
+ * @brief Deallocate a char string object.
+ *
+ * @param[in] s The string to delete.
+ */
+void ssh_string_free_char(char *s) {
+ SAFE_FREE(s);
+}
+
+/**
* @brief Copy a string, return a newly allocated string. The caller has to
* free the string.
*