summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-service.h
diff options
context:
space:
mode:
authorGravatar snowdrop2006-01-10 11:21:55 +0000
committerGravatar snowdrop2006-01-10 11:21:55 +0000
commitc24e5b5135d745098ea6e5c4664a88ada6b99225 (patch)
tree5a699cafd54fe64e08c10f2a2912f1d800cc0a6b /libcsoap/soap-service.h
parent56841f81e5c0082ec7c36e44737d07f60fada535 (diff)
downloadcsoap-c24e5b5135d745098ea6e5c4664a88ada6b99225.tar.gz
csoap-c24e5b5135d745098ea6e5c4664a88ada6b99225.tar.bz2
indent with 'indent -nut -bli0 -fca' command
Diffstat (limited to 'libcsoap/soap-service.h')
-rw-r--r--libcsoap/soap-service.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/libcsoap/soap-service.h b/libcsoap/soap-service.h
index c03d7df..497e77b 100644
--- a/libcsoap/soap-service.h
+++ b/libcsoap/soap-service.h
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: soap-service.h,v 1.3 2004/10/28 10:30:46 snowdrop Exp $
+ * $Id: soap-service.h,v 1.4 2006/01/10 11:21:55 snowdrop Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -28,7 +28,7 @@
#include <libcsoap/soap-env.h>
#include <libcsoap/soap-ctx.h>
-typedef herror_t (*SoapServiceFunc)(SoapCtx*, SoapCtx*);
+typedef herror_t (*SoapServiceFunc) (SoapCtx *, SoapCtx *);
typedef struct _SoapService
@@ -36,24 +36,22 @@ typedef struct _SoapService
char *urn;
char *method;
SoapServiceFunc func;
-}SoapService;
+} SoapService;
typedef struct _SoapServiceNode
{
SoapService *service;
struct _SoapServiceNode *next;
-}SoapServiceNode;
+} SoapServiceNode;
-SoapServiceNode *soap_service_node_new(SoapService *service,
- SoapServiceNode *next);
+SoapServiceNode *soap_service_node_new (SoapService * service,
+ SoapServiceNode * next);
-SoapService *soap_service_new(const char* urn, const char *method,
- SoapServiceFunc f);
-void soap_service_free(SoapService *service);
+SoapService *soap_service_new (const char *urn, const char *method,
+ SoapServiceFunc f);
+void soap_service_free (SoapService * service);
#endif
-
-