X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e5fbc3c2bb1c06106e5fea0e032868219cea9d50..fb2c06ad23be8a12b22bdc8e77c63f4d7c61a1bb:/include/xbt/hash.h diff --git a/include/xbt/hash.h b/include/xbt/hash.h index 43b483ca59..b4bd66dccd 100644 --- a/include/xbt/hash.h +++ b/include/xbt/hash.h @@ -2,8 +2,8 @@ /* hash.h - Various hashing functions. */ -/* Copyright (c) 2007, Martin Quinson. */ -/* All rights reserved. */ +/* Copyright (c) 2008, 2009, 2010. The SimGrid Team. + * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -15,16 +15,17 @@ /* Chord needs a SHA1 algorithm. Let's drop it in there */ typedef struct s_xbt_sha_ s_xbt_sha_t, *xbt_sha_t; -XBT_PUBLIC(xbt_sha_t) xbt_sha_new (void); -XBT_PUBLIC(void) xbt_sha_free (xbt_sha_t sha); +XBT_PUBLIC(xbt_sha_t) xbt_sha_new(void); +XBT_PUBLIC(void) xbt_sha_free(xbt_sha_t sha); -XBT_PUBLIC(void) xbt_sha_feed (xbt_sha_t sha, const unsigned char *data, size_t len); -XBT_PUBLIC(void) xbt_sha_reset (xbt_sha_t sha); +XBT_PUBLIC(void) xbt_sha_feed(xbt_sha_t sha, const unsigned char *data, + size_t len); +XBT_PUBLIC(void) xbt_sha_reset(xbt_sha_t sha); -XBT_PUBLIC(void) xbt_sha_print (xbt_sha_t sha, char *hash); -XBT_PUBLIC(char *) xbt_sha_read(xbt_sha_t sha); - -XBT_PUBLIC(void) xbt_sha (const char *data, char *hash); +XBT_PUBLIC(void) xbt_sha_print(xbt_sha_t sha, char *hash); +XBT_PUBLIC(char *) xbt_sha_read(xbt_sha_t sha); +XBT_PUBLIC(void) xbt_sha(const char *data, char *hash); -#endif /* XBT_HASH_H */ + +#endif /* XBT_HASH_H */