diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2008-05-12 21:20:00 +0000 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2008-05-12 21:20:00 +0000 |
commit | 6a80f1a049ae7a64fac5a0838c268eac3e6d0b8b (patch) | |
tree | c7d788f3faad324b34ba9271ecb537ccaf9b0c2d /include/libssh/libssh.h | |
parent | f084f6e67cf62611fc0f99e367fa6eda1329d760 (diff) | |
download | libssh-6a80f1a049ae7a64fac5a0838c268eac3e6d0b8b.tar.gz libssh-6a80f1a049ae7a64fac5a0838c268eac3e6d0b8b.tar.xz libssh-6a80f1a049ae7a64fac5a0838c268eac3e6d0b8b.zip |
Resolved the string_free issue by coding it. I also made some
documentations of the string module.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@156 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'include/libssh/libssh.h')
-rw-r--r-- | include/libssh/libssh.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h index 35f35240..43312a6c 100644 --- a/include/libssh/libssh.h +++ b/include/libssh/libssh.h @@ -153,6 +153,7 @@ STRING *string_copy(STRING *str); /* burns the data inside a string */ void string_burn(STRING *str); void *string_data(STRING *str); +void string_free(STRING *str); /* deprecated */ void ssh_crypto_init(); |