From 32c1fbd2cf779a65e807d0d82412ffffa2401962 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 15 Nov 2019 18:01:45 +0300 Subject: [magi] --- src/param.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/param.h') diff --git a/src/param.h b/src/param.h index ede1586..b06c59f 100644 --- a/src/param.h +++ b/src/param.h @@ -20,15 +20,15 @@ struct magi_param_list { * Adds *item to the begining of *list, item and list are dereferencable; * Returns null in case of error. */ -int magi_param_list_add( - struct magi_param_list ** list, struct magi_param * item); +int magi_param_list_add(struct magi_param_list ** list, + struct magi_param * item); /* * Searchs for first node in list: node.name == name, name is C-string; * Returns node itself if succeed, otherwise result is null. */ -struct magi_param * magi_param_list_get( - struct magi_param_list * list, const char * name); +struct magi_param * magi_param_list_get(struct magi_param_list * list, + const char * name); /* * Destroys list; list is not valid after destruction. -- cgit v1.2.3