diff options
author | snowdrop | 2004-05-14 09:27:52 +0000 |
---|---|---|
committer | snowdrop | 2004-05-14 09:27:52 +0000 |
commit | 44c6d0e5951dc65a05829b5532ad41141c8547e8 (patch) | |
tree | 4ed99792e257e45d61dd32fc59f57de33a9afd49 /libcsoap/soap-env.h | |
parent | 81be1a502c22dd141b34d5fd49235d0aededebef (diff) | |
download | csoap-44c6d0e5951dc65a05829b5532ad41141c8547e8.tar.gz csoap-44c6d0e5951dc65a05829b5532ad41141c8547e8.tar.bz2 |
added soap_env_free() function decl
Diffstat (limited to 'libcsoap/soap-env.h')
-rw-r--r-- | libcsoap/soap-env.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libcsoap/soap-env.h b/libcsoap/soap-env.h index 44858b5..5cb0f57 100644 --- a/libcsoap/soap-env.h +++ b/libcsoap/soap-env.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: soap-env.h,v 1.3 2004/02/10 09:51:10 snowdrop Exp $ + * $Id: soap-env.h,v 1.4 2004/05/14 09:27:52 snowdrop Exp $ * * CSOAP Project: A SOAP client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -237,6 +237,13 @@ soap_env_push_item(SoapEnv *env, const char *type, void soap_env_pop_item(SoapEnv* env); +/** + Free the envelope. + + @param env The envelope object + */ +void +soap_env_free(SoapEnv *env); /* --------------------------------------------------- */ |