-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfunction.h
More file actions
32 lines (27 loc) · 1.25 KB
/
Copy pathfunction.h
File metadata and controls
32 lines (27 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**************************************************************************** **
* Copyright (C) 2001-2020 Inhand Networks, Inc.
**************************************************************************** **/
/* ************************************************************************** **
* MODULE NAME : system
* LANGUAGE : C
* TARGET ENVIRONMENT : Any
* FILE NAME : function.h
* FIRST CREATION DATE : 2021/05/09
* --------------------------------------------------------------------------
* Version : 1.0
* Author : EExuke
* Last Change : 2021/05/09
* FILE DESCRIPTION : API exported to external moduels
** ************************************************************************** */
#ifndef _FUNCTION_H_
#define _FUNCTION_H_
/*------------------Macro Definition-------------------------*/
#define PI 3.1415
/*------------------End of Macro Definition------------------*/
/*------------------API Definition---------------------------*/
//2-1圆周长
float GetPerimeter(float fRadius);
//2-2分段函数
int GetPiecewise(int x);
/*------------------End of API Definition--------------------*/
#endif /* End of _FUNCTION_H_ */