home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume5 / pbm3 / part4 / libpbm1.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-02-03  |  789 b   |  33 lines

  1. /* libpbm1.c - pbm utility library part 1
  2. **
  3. ** Copyright (C) 1988 by Jef Poskanzer.
  4. **
  5. ** Permission to use, copy, modify, and distribute this software and its
  6. ** documentation for any purpose and without fee is hereby granted, provided
  7. ** that the above copyright notice appear in all copies and that both that
  8. ** copyright notice and this permission notice appear in supporting
  9. ** documentation.  This software is provided "as is" without express or
  10. ** implied warranty.
  11. */
  12.  
  13. #include <stdio.h>
  14. #include "pbm.h"
  15. #include "libpbm.h"
  16.  
  17.  
  18. bit **
  19. pbm_allocarray( cols, rows )
  20. int cols, rows;
  21.     {
  22.     bit **bits;
  23.     int i;
  24.  
  25.     bits = (bit **) malloc( rows * sizeof( bit *) );
  26.     for ( i = 0; i < rows; i++ )
  27.     {
  28.     bits[i] = (bit *) malloc( cols * sizeof( bit ) );
  29.     }
  30.  
  31.     return bits;
  32.     }
  33.