misc.h

来自「还是arm7操作源码」· C头文件 代码 · 共 48 行

H
48
字号
/******************************************************************************
   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 + =
减小字号Ctrl + -
显示快捷键?