Changeset 1394 for trunk/src/z-file.h

Show
Ignore:
Timestamp:
05/15/09 03:13:21 (16 months ago)
Author:
takkaria
Message:

Remove some pointless faff from z-file.c.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/z-file.h

    r1263 r1394  
    3939 */ 
    4040size_t path_build(char *buf, size_t len, const char *base, const char *leaf); 
    41  
    42  
    43  
    44 /*** Byte-flipping functions ***/ 
    45  
    46 /** 
    47  * "Flip" the bits of the integer specified in `arg` to make them big-endian. 
    48  * Useful when writing to files intended to be portable across systems. 
    49  *  
    50  * Returns the flipped value, or the original if the current system is already 
    51  * big-endian. 
    52  */ 
    53 u16b flip_u16b(u16b arg); 
    54 u32b flip_u32b(u32b arg); 
    5541 
    5642