summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-ctx.h
diff options
context:
space:
mode:
authorGravatar snowdrop2006-01-10 11:29:04 +0000
committerGravatar snowdrop2006-01-10 11:29:04 +0000
commit07c7c81772c4b60b7980880847f3b21455a0f3c9 (patch)
treed7f8ea3508586842124684aa8f0b860f3a3a1c47 /libcsoap/soap-ctx.h
parente96ea6884919f551111c32de0b63af4dff791f12 (diff)
downloadcsoap-07c7c81772c4b60b7980880847f3b21455a0f3c9.tar.gz
csoap-07c7c81772c4b60b7980880847f3b21455a0f3c9.tar.bz2
indent with 'indent -nut -bli0 -fca -npcs' command
Diffstat (limited to 'libcsoap/soap-ctx.h')
-rwxr-xr-xlibcsoap/soap-ctx.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/libcsoap/soap-ctx.h b/libcsoap/soap-ctx.h
index 2df74b9..1baabba 100755
--- a/libcsoap/soap-ctx.h
+++ b/libcsoap/soap-ctx.h
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: soap-ctx.h,v 1.6 2006/01/10 11:21:55 snowdrop Exp $
+ * $Id: soap-ctx.h,v 1.7 2006/01/10 11:29:04 snowdrop Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003-2004 Ferhat Ayaz
@@ -41,7 +41,7 @@ typedef struct _SoapCtx
} SoapCtx;
-SoapCtx *soap_ctx_new (SoapEnv * env); /* should only be used internally */
+SoapCtx *soap_ctx_new(SoapEnv * env); /* should only be used internally */
/**
Returns the attached file if any found.
@@ -51,22 +51,22 @@ SoapCtx *soap_ctx_new (SoapEnv * env); /* should only be used internally */
@returns a part_t object of attachment was found, NULL otherwise.
*/
-part_t *soap_ctx_get_file (SoapCtx * ctx, xmlNodePtr node);
+part_t *soap_ctx_get_file(SoapCtx * ctx, xmlNodePtr node);
/**
Creates a new soap context object.
*/
-herror_t soap_ctx_new_with_method (const char *urn, const char *method,
- SoapCtx ** out);
+herror_t soap_ctx_new_with_method(const char *urn, const char *method,
+ SoapCtx ** out);
/* Size of destination dest_href should be MAX_HREF_SIZE */
-herror_t soap_ctx_add_file (SoapCtx * ctx, const char *filename,
- const char *content_type, char *dest_href);
+herror_t soap_ctx_add_file(SoapCtx * ctx, const char *filename,
+ const char *content_type, char *dest_href);
/*
Used internally. Will switch the deleteOnExit flag from the
given one to the added part.
*/
-void soap_ctx_add_files (SoapCtx * ctx, attachments_t * attachments);
-void soap_ctx_free (SoapCtx * ctx);
+void soap_ctx_add_files(SoapCtx * ctx, attachments_t * attachments);
+void soap_ctx_free(SoapCtx * ctx);
#endif