X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Futils_fbhash.h;h=fcd6e925d86d127576327a8b92917183917dd99f;hp=d9206a02b67658d042b8970f22ecd1152e0db0a2;hb=7111bb6df7628edce3a8e538b386fbe27633a191;hpb=25b5f5c49dd50c64f41b7bf69b8e471b0ffc6f15 diff --git a/src/utils_fbhash.h b/src/utils_fbhash.h index d9206a02..fcd6e925 100644 --- a/src/utils_fbhash.h +++ b/src/utils_fbhash.h @@ -40,13 +40,11 @@ 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 : */