Ignore:
Timestamp:
08/12/06 16:26:51 (18 years ago)
Author:
zorg
Message:

Update to 1.2.2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/mpcdec/internal.h

    r6 r7  
    4646/// Big/little endian 32 bit byte swapping routine.
    4747static __inline
    48 mpc_uint32_t swap32(mpc_uint32_t val) {
     48mpc_uint32_t mpc_swap32(mpc_uint32_t val) {
    4949    return (((val & 0xff000000) >> 24) | ((val & 0x00ff0000) >> 8) |
    5050            ((val & 0x0000ff00) <<  8) | ((val & 0x000000ff) << 24));
Note: See TracChangeset for help on using the changeset viewer.