diff src/xs_stil.h @ 684:4bf845090a25

Indentation cleanups.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 21 May 2008 02:24:53 +0300
parents b0743dc9165d
children 55eea3fa8868
line wrap: on
line diff
--- a/src/xs_stil.h	Mon May 19 07:35:12 2008 +0300
+++ b/src/xs_stil.h	Wed May 21 02:24:53 2008 +0300
@@ -10,25 +10,25 @@
 /* Types
  */
 typedef struct {
-    gchar    *name,
-        *author,
-        *title,
-        *info;
+    gchar *name,
+          *author,
+          *title,
+          *info;
 } stil_subnode_t;
 
 
 typedef struct _stil_node_t {
-    gchar            *filename;
-    gint            nsubTunes;
-    stil_subnode_t        **subTunes;
-    struct _stil_node_t    *prev, *next;
+    gchar               *filename;
+    gint                nsubTunes;
+    stil_subnode_t      **subTunes;
+    struct _stil_node_t *prev, *next;
 } stil_node_t;
 
 
 typedef struct {
-    stil_node_t    *nodes,
-            **pindex;
-    size_t        n;
+    stil_node_t *nodes,
+                **pindex;
+    size_t      n;
 } xs_stildb_t;
 
 
@@ -37,7 +37,7 @@
 gint            xs_stildb_read(xs_stildb_t *, gchar *);
 gint            xs_stildb_index(xs_stildb_t *);
 void            xs_stildb_free(xs_stildb_t *);
-stil_node_t *    xs_stildb_get_node(xs_stildb_t *, gchar *);
+stil_node_t *   xs_stildb_get_node(xs_stildb_t *, gchar *);
 
 #ifdef __cplusplus
 }