?? gui__divideround.c
字號(hào):
/*************************************************************************************************************
uC/GUI
嵌入式通用圖形軟件
File : GUI__DivideRound.C
Purpose : Implementation of GUI__DivideRound
************************************************************************************************************/
#include "GUI_Protected.H"
/*************************************************************************************************************
Public code
*************************************************************************************************************/
/*************************************************************************************************************
GUI__DivideRound
This routine is used internally for computations. Primary goal is to minimize the effects of rounding
which occur if we simply divide.
*************************************************************************************************************/
int GUI__DivideRound(int a, int b)
{
int r = 0;
if (b)
{
r = ((a +b/2) / b);
}
return r;
}
?? 快捷鍵說(shuō)明
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -