home *** CD-ROM | disk | FTP | other *** search
/ Der Mediaplex Sampler - Die 6 von Plex / 6_v_plex.zip / 6_v_plex / DISK5 / DOS_14 / GS252DVX.ZIP / MEMORY_.H < prev    next >
C/C++ Source or Header  |  1992-11-24  |  2KB  |  50 lines

  1. /* Copyright (C) 1989, 1992 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* memory_.h */
  21. /* Generic substitute for Unix memory.h */
  22.  
  23. /****** Note: the System V bcmp routine only returns zero or non-zero, ******/
  24. /****** unlike memcmp which returns -1, 0, or 1. ******/
  25.  
  26. #        include <memory.h>
  27.  
  28. /* memswab2 and memswab4 are not standard routines; */
  29. /* they swap bytes in 16- and 32-bit words respectively. */
  30. /* We thought we would come out ahead by using the Watcom C `swab' library */
  31. /* routine for memswab2, but it's slower than the C routine in gsmisc.c! */
  32. /* Note that the arguments are declared char *, */
  33. /* but the implementation may assume they are int-aligned. */
  34. #ifdef __PROTOTYPES__
  35. extern void memswab2(const char *src, char *dest, int count);
  36. extern void memswab4(const char *src, char *dest, int count);
  37. #else
  38. extern void memswab2(), memswab4();
  39. #endif
  40.  
  41. /* memflip8x8 transposes an 8 x 8 block of bits. */
  42. /* line_size is the raster of the input data; */
  43. /* dist is the distance between output bytes. */
  44. /* Dot matrix printers need this.  The C code is in gsmisc.c. */
  45. #ifdef __PROTOTYPES__
  46. extern void memflip8x8(const byte *inp, int line_size, byte *outp, int dist);
  47. #else
  48. extern void memflip8x8();
  49. #endif
  50.