Merge branch 'collectd-5.7' into collectd-5.8
[collectd.git] / src / utils_fbhash.h
index d9206a0..fcd6e92 100644 (file)
 struct fbhash_s;
 typedef struct fbhash_s fbhash_t;
 
-fbhash_t *fbh_create (const char *file);
-void fbh_destroy (fbhash_t *h);
+fbhash_t *fbh_create(const char *file);
+void fbh_destroy(fbhash_t *h);
 
 /* Returns the value as a newly allocated `char *'. It's the caller's
  * responsibility to free this memory. */
-char *fbh_get (fbhash_t *h, const char *key);
+char *fbh_get(fbhash_t *h, const char *key);
 
 #endif /* UTILS_FBHASH_H */
-
-/* vim: set sw=2 sts=2 et fdm=marker : */