home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / fastgpi.zip / a-float.h < prev    next >
C/C++ Source or Header  |  1994-09-01  |  933b  |  43 lines

  1. /*
  2.  * array.h - header file for the parameterized array package
  3.  * author: George K. Thiruvathukal
  4.  * note: these routines are supplied with the Apt Compiler Toolkit
  5.  *       copyright (c); 1991, George K. Thiruvathukal
  6.  */
  7.  
  8. #ifdef __ANSI_C__
  9. float *New1DOffloat (int l1, int h1);
  10. #else
  11. float *New1DOffloat ();
  12. #endif
  13.  
  14. #ifdef __ANSI_C__
  15. float **New2DOffloat (int l1, int h1, int l2, int h2);
  16. #else
  17. float **New2DOffloat ();
  18. #endif
  19.     
  20. #ifdef __ANSI_C__
  21. float ***New3DOffloat (int l1, int h1, int l2, int h2, int l3, int h3);
  22. #else
  23. float ***New3DOffloat ();
  24. #endif
  25.  
  26. #ifdef __ANSI_C__
  27. void Dispose1DOffloat (float *a);
  28. #else
  29. void Dispose1DOffloat ();
  30. #endif
  31.  
  32. #ifdef __ANSI_C__
  33. void Dispose2DOffloat (float **a, int l1, int h1);
  34. #else
  35. void Dispose2DOffloat ();
  36. #endif
  37.  
  38. #ifdef __ANSI_C__
  39. void Dispose3DOffloat (float ***a, int l1, int h1, int l2, int h2);
  40. #else
  41. void Dispose3DOffloat ();
  42. #endif
  43.