indentation fix
authorChristian Grothoff <christian@grothoff.org>
Thu, 18 Jun 2020 08:11:25 +0000 (10:11 +0200)
committerChristian Grothoff <christian@grothoff.org>
Thu, 18 Jun 2020 08:11:46 +0000 (10:11 +0200)
src/include/gnunet_crypto_lib.h
src/include/gnunet_json_lib.h
src/include/gnunet_strings_lib.h

index d11c6b58cd8c32f2e99381507c62a6daa406c0f2..3207016430ee734a64adb8888023be6ed68db01c 100644 (file)
@@ -2172,7 +2172,8 @@ GNUNET_CRYPTO_rsa_signature_cmp (const struct GNUNET_CRYPTO_RsaSignature *s1,
  */
 int
 GNUNET_CRYPTO_rsa_private_key_cmp (const struct GNUNET_CRYPTO_RsaPrivateKey *p1,
-                                   const struct GNUNET_CRYPTO_RsaPrivateKey *p2);
+                                   const struct
+                                   GNUNET_CRYPTO_RsaPrivateKey *p2);
 
 
 /**
index 27996f18d24e68d14c431cfac2515b1be9312268..95d136239a3a32f5238bf9401728d2e46153242a 100644 (file)
@@ -173,7 +173,9 @@ GNUNET_JSON_spec_mark_optional (struct GNUNET_JSON_Specification spec);
  * @param size number of bytes expected in @a obj
  */
 struct GNUNET_JSON_Specification
-GNUNET_JSON_spec_fixed (const char *name, void *obj, size_t size);
+GNUNET_JSON_spec_fixed (const char *name,
+                        void *obj,
+                        size_t size);
 
 
 /**
@@ -196,7 +198,9 @@ GNUNET_JSON_spec_fixed (const char *name, void *obj, size_t size);
  * @param[out] size where to store the number of bytes allocated for @a obj
  */
 struct GNUNET_JSON_Specification
-GNUNET_JSON_spec_varsize (const char *name, void **obj, size_t *size);
+GNUNET_JSON_spec_varsize (const char *name,
+                          void **obj,
+                          size_t *size);
 
 
 /**
@@ -206,7 +210,9 @@ GNUNET_JSON_spec_varsize (const char *name, void **obj, size_t *size);
  * @param strptr where to store a pointer to the field
  */
 struct GNUNET_JSON_Specification
-GNUNET_JSON_spec_string (const char *name, const char **strptr);
+GNUNET_JSON_spec_string (const char *name,
+                         const char **strptr);
+
 
 /**
  * JSON object.
@@ -215,7 +221,8 @@ GNUNET_JSON_spec_string (const char *name, const char **strptr);
  * @param[out] jsonp where to store the JSON found under @a name
  */
 struct GNUNET_JSON_Specification
-GNUNET_JSON_spec_json (const char *name, json_t **jsonp);
+GNUNET_JSON_spec_json (const char *name,
+                       json_t **jsonp);
 
 
 /**
@@ -291,7 +298,8 @@ GNUNET_JSON_spec_int64 (const char *name,
  * @param[out] boolean where to store the boolean found under @a name
  */
 struct GNUNET_JSON_Specification
-GNUNET_JSON_spec_boolean (const char *name, int *boolean);
+GNUNET_JSON_spec_boolean (const char *name,
+                          int *boolean);
 
 
 /* ************ GNUnet-specific parser specifications ******************* */
index 4003590fc550e76930e8bdc0b97844f36c4b6ae4..663b44194749a70018a51575d538a18aa9832055 100644 (file)
@@ -120,7 +120,8 @@ GNUNET_STRINGS_byte_size_fancy (unsigned long long size);
  *  string is returned.
  */
 char *
-GNUNET_STRINGS_conv (const char *input, size_t len,
+GNUNET_STRINGS_conv (const char *input,
+                     size_t len,
                      const char *input_charset,
                      const char *output_charset);