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

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. /*
  4. **  Header file for SNIPPETS array allocation functions
  5. */
  6.  
  7. #ifndef SNPARRAY__H
  8. #define SNPARRAY__H
  9.  
  10. /*
  11. **  AMALLOC.C
  12. */
  13.  
  14. void *amalloc( int esiz, void *initval, int dims, ... );
  15.  
  16. /*
  17. **  MDALLOC.C
  18. */
  19.  
  20. void *mdalloc(int ndim, int width, ...);
  21. void mdfree(void *tip, int ndim);
  22.  
  23. #endif /* SNPARRAY__H */
  24.