home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume11 / rpl / part02 / trigcmd.h < prev   
Encoding:
C/C++ Source or Header  |  1990-03-10  |  460 b   |  24 lines

  1. /****************************************************************
  2.  
  3.     Functions used for implementing user trigonometric commands
  4.  
  5. 0.0    hjp    89-12-03
  6.  
  7.     initial version
  8.     SIN, COS, TAN, ASIN, ACOS, ATAN extracted from ArithCmd.
  9.  
  10. ****************************************************************/
  11.  
  12. #ifndef I_trigcmd
  13.  
  14.     #define I_trigcmd
  15.  
  16.     void    c_acos    (void);
  17.     void    c_asin    (void);
  18.     void    c_atan    (void);
  19.     void    c_cos    (void);
  20.     void    c_sin    (void);
  21.     void    c_tan    (void);
  22.  
  23. #endif
  24.