~ubuntu-branches/ubuntu/raring/flac/raring

« back to all changes in this revision

Viewing changes to src/libFLAC/md5.c

  • Committer: Bazaar Package Importer
  • Author(s): Joshua Kwan
  • Date: 2007-05-29 22:56:36 UTC
  • mto: (8.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20070529225636-p8lkii0r0kp50pns
Tags: upstream-1.1.4
ImportĀ upstreamĀ versionĀ 1.1.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 * Still in the public domain.
24
24
 */
25
25
 
 
26
#if HAVE_CONFIG_H
 
27
#  include <config.h>
 
28
#endif
 
29
 
26
30
#include <stdlib.h>             /* for malloc() */
27
31
#include <string.h>             /* for memcpy() */
28
32
 
29
33
#include "private/md5.h"
30
34
 
31
 
#ifdef HAVE_CONFIG_H
32
 
#include <config.h>
33
 
#endif
34
 
 
35
35
#ifndef FLaC__INLINE
36
36
#define FLaC__INLINE
37
37
#endif
57
57
 * reflect the addition of 16 longwords of new data.  MD5Update blocks
58
58
 * the data and converts bytes into longwords for this routine.
59
59
 */
60
 
FLaC__INLINE
61
60
void
62
61
FLAC__MD5Transform(FLAC__uint32 buf[4], FLAC__uint32 const in[16])
63
62
{