home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c129 / 1.ddi / MISCIO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-04-11  |  320 b   |  11 lines

  1. # define M_PI   3.14159265358979324
  2. # define M_PI_2 1.57079632679489662
  3. # define M_PI_4 0.785398163397448310
  4.  
  5. void GotoXY(int x, int y);
  6. void ClrScr();
  7. void ClrEol();
  8. float frandom();
  9. void double2float(float destination[], double source[],int n);
  10. void float2double(double destination[], float source[],int n);
  11.