Merge: doc: fixed some typos and other misc. corrections
[nit.git] / clib / gc_static_objects_list.h
index 7f42f61..ab0e0fd 100644 (file)
 #include "nit_common.h"
 
 typedef struct GC_static_object {
-       val_t * pointer;
+       val_t *pointer;
        struct GC_static_object *next;
-}GC_static_object;
+} GC_static_object;
 
-typedef struct GC_List{
+typedef struct GC_List {
        GC_static_object *top;
        int size;
-}GC_List;
+} GC_List;
 
-void GC_List_Init (GC_List *list);
-int GC_List_Push (GC_List *list, val_t *pointer);
+void GC_List_Init(GC_List *list);
+int GC_List_Push(GC_List *list, val_t *pointer);
 
 #endif