* eina: Fix declaration according to Vincent Torri review.

SVN revision: 41359
This commit is contained in:
Cedric BAIL 2009-07-16 12:09:29 +00:00
parent 01062bf98b
commit 6ca987941f
2 changed files with 2 additions and 0 deletions

View File

@ -120,6 +120,7 @@ EAPI int eina_hash_superfast(const char *key, int len) EINA_ARG_NONNULL(1);
/* Hash function first reported by dan bernstein many years ago in comp.lang.c */
static inline int eina_hash_djb2(const char *key, int len) EINA_ARG_NONNULL(1);
static inline int eina_hash_djb2_len(const char *key, int *plen) EINA_ARG_NONNULL(1, 2);
/* Hash function from http://www.concentric.net/~Ttwang/tech/inthash.htm */
static inline int eina_hash_int32(const unsigned int *pkey, int len) EINA_ARG_NONNULL(1);

View File

@ -74,6 +74,7 @@ EAPI void eina_stringshare_del(const char *str);
EAPI int eina_stringshare_strlen(const char *str) EINA_CONST EINA_WARN_UNUSED_RESULT;
EAPI void eina_stringshare_dump(void);
static inline Eina_Bool eina_stringshare_replace(const char **p_str, const char *news) EINA_ARG_NONNULL(1, 2);
#include "eina_inline_stringshare.x"