X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Futils_fbhash.h;h=fcd6e925d86d127576327a8b92917183917dd99f;hp=d9206a02b67658d042b8970f22ecd1152e0db0a2;hb=1159cb5d383c55a80a0db100b8f7aadcf44740a5;hpb=6258e772d808f4e76ea8e23d9e2750cfc7e6c60d 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 : */