home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 19 / AACD19.BIN / AACD / Programming / MCC_GLArea / MCC_GLArea_Dev / GLArea_Demo / Useful / Conversion.h < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-01  |  435 b   |  19 lines

  1. /*---------------------------------------
  2.   Conversion.h
  3.   Version 1.21
  4.   Date: 6 january 1998
  5.   Author: BODMER Stephan (bodmer2@uni2a.unige.ch)
  6.   Note: convert float to char and integer to char
  7. ------------------------------------------*/
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. int itoa (int num, char *buff);
  12. int ftoa (float real, char *buff);
  13. int dtoa (double real, char *buff);
  14. float ftof(float real);
  15.  
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19.