home · contact · privacy
More consistent code styling whitespace rules.
[plomrogue] / src / wincontrol.c
index 7933d48ad5b16b705b2a774d08dfa49715e928ee..f6e0d2973093d270b9a00103b514b56fde3a2cbe 100644 (file)
@@ -33,8 +33,6 @@
 /* Return string "prefix" + "id"; malloc()'s string, remember to call free()! */
 static char * string_prefixed_id(char * prefix, char id);
 
-
-
 /* Create Winconf, init ->view/height_type/width_type to 0, ->id to "id". */
 static void create_winconf(char id, struct WinConf * wcp);
 
@@ -50,15 +48,11 @@ static void save_win_config(char id);
 /* Free data pointed to inside WinConf struct. */
 static void free_winconf_data(char id);
 
-
-
 /* Write geometry of a window to its WinConf, as positive or negative values
  * (dependent on state ofWinConf->height_type / WinConf->width_type).
  */
 static void set_winconf_geometry(char id);
 
-
-
 /* Get WinConf by "id"; get id of WinConf mothering "win". */
 static struct WinConf * get_winconf_by_id(char id);