📄 misc.h
字号:
/******************************************************************************
Copyright (c) 2006 by RockOS.
All rights reserved.
This software is supported by the Rock Software Workroom.
Any bugs please contact the author with e-mail or QQ:
E-mail : baobaoba520@yahoo.com.cn
QQ : 59681888
*******************************************************************************
File name : misc.h
Description : header file for misc functions.
:
:
Auther : sunxinqiu
History :
2006-3-15 first release.
******************************************************************************/
#ifndef __MISC_H__
#define __MISC_H__
#ifdef __cplusplus
extern "C" {
#endif
extern HSEMA g_stdoutSem;
extern HSEMA g_stderrSem;
int str2int(const char * str);
U32 sec2Tick(U32 seconds);
void OS_putchar(const char ch);
void OS_printf(const char * format,...);
void OS_error(const char * format,...);
void fatalError(const char * format, ...);
#ifdef USE_FLOAT_DATA
extern int g_floatPrecision;
double str2double (const char * str);
#endif
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -