uncrustify as demanded.
[oweals/gnunet.git] / src / include / gnunet_nc_lib.h
index 2bfa7040c3c55baa80b98cfe28b5aaa182cf4862..1bdb474eaec060c561a7265413d722341baaae57 100644 (file)
      WITHOUT ANY WARRANTY; without even the implied warranty of
      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      Affero General Public License for more details.
-    
+
      You should have received a copy of the GNU Affero General Public License
      along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
      SPDX-License-Identifier: AGPL3.0-or-later
-*/
+ */
 /**
  * @author Christian Grothoff
  *
@@ -54,7 +54,7 @@ struct GNUNET_NotificationContext;
  * @return handle to the notification context
  */
 struct GNUNET_NotificationContext *
-GNUNET_notification_context_create (unsigned int queue_length);
+GNUNET_notification_context_create(unsigned int queue_length);
 
 
 /**
@@ -63,7 +63,7 @@ GNUNET_notification_context_create (unsigned int queue_length);
  * @param nc context to destroy.
  */
 void
-GNUNET_notification_context_destroy (struct GNUNET_NotificationContext *nc);
+GNUNET_notification_context_destroy(struct GNUNET_NotificationContext *nc);
 
 
 /**
@@ -73,8 +73,8 @@ GNUNET_notification_context_destroy (struct GNUNET_NotificationContext *nc);
  * @param mq message queue add
  */
 void
-GNUNET_notification_context_add (struct GNUNET_NotificationContext *nc,
-                                struct GNUNET_MQ_Handle *mq);
+GNUNET_notification_context_add(struct GNUNET_NotificationContext *nc,
+                                struct GNUNET_MQ_Handle *mq);
 
 
 /**
@@ -85,9 +85,9 @@ GNUNET_notification_context_add (struct GNUNET_NotificationContext *nc,
  * @param can_drop can this message be dropped due to queue length limitations
  */
 void
-GNUNET_notification_context_broadcast (struct GNUNET_NotificationContext *nc,
-                                      const struct GNUNET_MessageHeader *msg,
-                                      int can_drop);
+GNUNET_notification_context_broadcast(struct GNUNET_NotificationContext *nc,
+                                      const struct GNUNET_MessageHeader *msg,
+                                      int can_drop);
 
 /**
  * Return active number of subscribers in this context.
@@ -96,6 +96,6 @@ GNUNET_notification_context_broadcast (struct GNUNET_NotificationContext *nc,
  * @return number of current subscribers
  */
 unsigned int
-GNUNET_notification_context_get_size (struct GNUNET_NotificationContext *nc);
+GNUNET_notification_context_get_size(struct GNUNET_NotificationContext *nc);
 
 #endif