diff src/xs_md5.h @ 657:acaba070cf49

Lots of cosmetic code cleanups; synced the de-gettextification from Audacious-SID, I suppose it makes some sense ...
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 02 Apr 2008 19:46:59 +0300
parents a3fdd2d6c056
children b0743dc9165d
line wrap: on
line diff
--- a/src/xs_md5.h	Wed Mar 26 08:55:29 2008 +0200
+++ b/src/xs_md5.h	Wed Apr 02 19:46:59 2008 +0300
@@ -13,19 +13,19 @@
 	guint32 bits[2];	/* message length in bits, lsw first */
 	guint32 buf[4];		/* digest buffer */
 	guint8 in[64];		/* accumulate block */
-} t_xs_md5state;
+} xs_md5state_t;
 
 #define XS_MD5HASH_LENGTH	(16)
 #define XS_MD5HASH_LENGTH_CH	(XS_MD5HASH_LENGTH * 2)
 
-typedef guint8 t_xs_md5hash[XS_MD5HASH_LENGTH];
+typedef guint8 xs_md5hash_t[XS_MD5HASH_LENGTH];
 
 
 /* Functions
  */
-void xs_md5_init(t_xs_md5state *ctx);
-void xs_md5_append(t_xs_md5state *ctx, const guint8 *buf, guint len);
-void xs_md5_finish(t_xs_md5state *ctx, t_xs_md5hash digest);
+void xs_md5_init(xs_md5state_t *ctx);
+void xs_md5_append(xs_md5state_t *ctx, const guint8 *buf, guint len);
+void xs_md5_finish(xs_md5state_t *ctx, xs_md5hash_t digest);
 
 
 #ifdef __cplusplus