gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r36911 - in gnunet/src: include psycutil


From: gnunet
Subject: [GNUnet-SVN] r36911 - in gnunet/src: include psycutil
Date: Sun, 21 Feb 2016 14:41:26 +0100

Author: tg
Date: 2016-02-21 14:41:26 +0100 (Sun, 21 Feb 2016)
New Revision: 36911

Modified:
   gnunet/src/include/gnunet_psyc_env.h
   gnunet/src/psycutil/psyc_env.c
Log:
indent

Modified: gnunet/src/include/gnunet_psyc_env.h
===================================================================
--- gnunet/src/include/gnunet_psyc_env.h        2016-02-20 12:30:43 UTC (rev 
36910)
+++ gnunet/src/include/gnunet_psyc_env.h        2016-02-21 13:41:26 UTC (rev 
36911)
@@ -163,8 +163,8 @@
  */
 void
 GNUNET_PSYC_env_add (struct GNUNET_PSYC_Environment *env,
-                            enum GNUNET_PSYC_Operator oper, const char *name,
-                            const void *value, size_t value_size);
+                     enum GNUNET_PSYC_Operator oper, const char *name,
+                     const void *value, size_t value_size);
 
 
 /**
@@ -187,7 +187,7 @@
  */
 void
 GNUNET_PSYC_env_remove (struct GNUNET_PSYC_Environment *env,
-                               struct GNUNET_PSYC_Modifier *mod);
+                        struct GNUNET_PSYC_Modifier *mod);
 
 
 /**
@@ -195,8 +195,8 @@
  */
 int
 GNUNET_PSYC_env_shift (struct GNUNET_PSYC_Environment *env,
-                              enum GNUNET_PSYC_Operator *oper, const char 
**name,
-                              const void **value, size_t *value_size);
+                       enum GNUNET_PSYC_Operator *oper, const char **name,
+                       const void **value, size_t *value_size);
 
 
 /**
@@ -210,8 +210,8 @@
  */
 typedef int
 (*GNUNET_PSYC_Iterator) (void *cls, enum GNUNET_PSYC_Operator oper,
-                        const char *name, const char *value,
-                        uint32_t value_size);
+                         const char *name, const char *value,
+                         uint32_t value_size);
 
 
 /**
@@ -223,7 +223,7 @@
  */
 void
 GNUNET_PSYC_env_iterate (const struct GNUNET_PSYC_Environment *env,
-                                GNUNET_PSYC_Iterator it, void *it_cls);
+                         GNUNET_PSYC_Iterator it, void *it_cls);
 
 
 /**
@@ -273,8 +273,8 @@
  */
 int
 GNUNET_PSYC_operation (char *name, void *current_value, size_t 
current_value_size,
-                      enum GNUNET_PSYC_Operator oper, void *args, size_t 
args_size,
-                      void **return_value, size_t *return_value_size);
+                       enum GNUNET_PSYC_Operator oper, void *args, size_t 
args_size,
+                       void **return_value, size_t *return_value_size);
 
 
 /**

Modified: gnunet/src/psycutil/psyc_env.c
===================================================================
--- gnunet/src/psycutil/psyc_env.c      2016-02-20 12:30:43 UTC (rev 36910)
+++ gnunet/src/psycutil/psyc_env.c      2016-02-21 13:41:26 UTC (rev 36911)
@@ -66,8 +66,8 @@
  */
 void
 GNUNET_PSYC_env_add (struct GNUNET_PSYC_Environment *env,
-                            enum GNUNET_PSYC_Operator oper, const char *name,
-                            const void *value, size_t value_size)
+                     enum GNUNET_PSYC_Operator oper, const char *name,
+                     const void *value, size_t value_size)
 {
   struct GNUNET_PSYC_Modifier *mod = GNUNET_new (struct GNUNET_PSYC_Modifier);
   mod->oper = oper;
@@ -104,7 +104,7 @@
  */
 void
 GNUNET_PSYC_env_remove (struct GNUNET_PSYC_Environment *env,
-                               struct GNUNET_PSYC_Modifier *mod)
+                        struct GNUNET_PSYC_Modifier *mod)
 {
   GNUNET_CONTAINER_DLL_remove (env->mod_head, env->mod_tail, mod);
 }
@@ -123,8 +123,8 @@
  */
 int
 GNUNET_PSYC_env_shift (struct GNUNET_PSYC_Environment *env,
-                              enum GNUNET_PSYC_Operator *oper, const char 
**name,
-                              const void **value, size_t *value_size)
+                       enum GNUNET_PSYC_Operator *oper, const char **name,
+                       const void **value, size_t *value_size)
 {
   if (NULL == env->mod_head)
     return GNUNET_NO;
@@ -152,7 +152,7 @@
  */
 void
 GNUNET_PSYC_env_iterate (const struct GNUNET_PSYC_Environment *env,
-                                GNUNET_PSYC_Iterator it, void *it_cls)
+                         GNUNET_PSYC_Iterator it, void *it_cls)
 {
   struct GNUNET_PSYC_Modifier *mod;
   for (mod = env->mod_head; NULL != mod; mod = mod->next)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]