Merge branch 'collectd-5.8'
[collectd.git] / src / utils_rrdcreate.h
index 14daadf..b2277e7 100644 (file)
 
 #include <stddef.h>
 
-struct rrdcreate_config_s
-{
+struct rrdcreate_config_s {
   unsigned long stepsize;
-  int    heartbeat;
-  int    rrarows;
+  int heartbeat;
+  int rrarows;
   double xff;
 
   int *timespans;
@@ -44,14 +43,11 @@ struct rrdcreate_config_s
   char **consolidation_functions;
   size_t consolidation_functions_num;
 
-  _Bool async;
+  bool async;
 };
 typedef struct rrdcreate_config_s rrdcreate_config_t;
 
-int cu_rrd_create_file (const char *filename,
-    const data_set_t *ds, const value_list_t *vl,
-    const rrdcreate_config_t *cfg);
+int cu_rrd_create_file(const char *filename, const data_set_t *ds,
+                       const value_list_t *vl, const rrdcreate_config_t *cfg);
 
 #endif /* UTILS_RRDCREATE_H */
-
-/* vim: set sw=2 sts=2 et : */