~ubuntu-branches/ubuntu/jaunty/xfireworks/jaunty

« back to all changes in this revision

Viewing changes to Calculator.h

  • Committer: Bazaar Package Importer
  • Author(s): Kenshi Muto
  • Date: 2001-02-09 23:36:39 UTC
  • Revision ID: james.westby@ubuntu.com-20010209233639-xqv0osi73i568sa7
Tags: upstream-1.3
ImportĀ upstreamĀ versionĀ 1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _Calculator_h_INCLUDED_
 
2
#define _Calculator_h_INCLUDED_
 
3
 
 
4
typedef struct _Calculator * Calculator;
 
5
 
 
6
#define CALCULATOR_DEFAULT_DEGREE 360
 
7
 
 
8
Calculator Calculator_Create(int degree_number);
 
9
Calculator Calculator_Destroy(Calculator cal);
 
10
double Calculator_GetSin(Calculator cal, int degree);
 
11
double Calculator_GetCos(Calculator cal, int degree);
 
12
 
 
13
#endif
 
14
 
 
15
/*****************************************************************************/
 
16
/* End of Program                                                            */
 
17
/*****************************************************************************/