aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2011-09-08 15:27:45 +0200
committerAndreas Schneider <asn@cryptomilk.org>2011-09-08 16:14:35 +0200
commitc1f8b38b7817383cd06413f4c0e9ddf1414e8597 (patch)
treed9e4e37a33ec000a282bfc571dc80193dae050fd /include
parent5581323c2c81bee79e34b7cfeac625c8eca344ce (diff)
downloadlibssh-c1f8b38b7817383cd06413f4c0e9ddf1414e8597.tar.gz
libssh-c1f8b38b7817383cd06413f4c0e9ddf1414e8597.tar.xz
libssh-c1f8b38b7817383cd06413f4c0e9ddf1414e8597.zip
string: Add ssh_string_get_char().
Diffstat (limited to 'include')
-rw-r--r--include/libssh/libssh.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index 52bfc178..4dd84e24 100644
--- a/include/libssh/libssh.h
+++ b/include/libssh/libssh.h
@@ -526,6 +526,7 @@ LIBSSH_API void ssh_string_free(ssh_string str);
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 const char *ssh_string_get_char(ssh_string str);
LIBSSH_API char *ssh_string_to_char(ssh_string str);
LIBSSH_API void ssh_string_free_char(char *s);