home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume11 / rpl / part02 / arithcmd.h next >
Encoding:
C/C++ Source or Header  |  1990-03-10  |  812 b   |  48 lines

  1. /****************************************************************
  2.  
  3.     Functions used for implementing user arithmetic commands
  4.  
  5. 0.0    hjp    89-06-27
  6.  
  7.     initial version
  8.  
  9. 0.1    hjp    89-10-01
  10.  
  11.     EXP and LN added.
  12.  
  13. 0.2    hjp    89-11-08
  14.  
  15.     PI, e and i added.
  16.     SIN, ASIN, COS, ACOS, TAN, ATAN added.
  17.  
  18. 0.3    hjp    89-11-15
  19.  
  20.     C->R, R->C, RE, IM added.
  21.  
  22. 0.4    hjp    89-12-02
  23.  
  24.     LN and EXP moved to LogCmd
  25.     SIN, TAN, COS, ASIN, ATAN, ACOS moved to TrigCmd
  26.     R->C, C->R, RE, IM moved to CmplxCmd.
  27.  
  28. ****************************************************************/
  29.  
  30. #ifndef I_arithcmd
  31.  
  32.     #define I_arithcmd
  33.  
  34.     void    c_add    (void);
  35.     void    c_div    (void);
  36.     void    c_e    (void);
  37.     void    c_i    (void);
  38.     void    c_inv    (void);
  39.     void    c_mul    (void);
  40.     void    c_neg    (void);
  41.     void    c_pi    (void);
  42.     void    c_pow    (void);
  43.     void    c_sq    (void);
  44.     void    c_sqrt    (void);
  45.     void    c_sub    (void);
  46.  
  47. #endif
  48.