mirror of
https://github.com/Hizenberg469/C1-Linux_SYS_Prog-AS-.git
synced 2026-04-20 02:42:23 +03:00
28 lines
547 B
C
28 lines
547 B
C
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: trig_math.h
|
|
*
|
|
* Description:
|
|
*
|
|
* Version: 1.0
|
|
* Created: 04/02/24 07:37:55 PM IST
|
|
* Revision: none
|
|
* Compiler: gcc
|
|
*
|
|
* Author: YOUR NAME (),
|
|
* Organization:
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
|
|
#ifndef __TRIG_MATH__
|
|
#define __TRIG_MATH__
|
|
|
|
#define PI 3.142
|
|
|
|
double sine(double x);
|
|
double cosine(double x);
|
|
|
|
#endif
|