home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / snip9707.zip / MEMREV.H < prev    next >
C/C++ Source or Header  |  1997-07-05  |  273b  |  16 lines

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. /*
  4. **  SNIPPETS header file for MEMREV.C
  5. */
  6.  
  7. #ifndef MEMREV__H
  8. #define MEMREV__H
  9.  
  10. #include <stddef.h>
  11.  
  12. void memrev(char  *buf, size_t count);
  13. void aswap(char  *buf, size_t head, size_t tail);
  14.  
  15. #endif /* MEMREV__H */
  16.