timeb.h

来自「uC/os原码 ,大家可以自由下载研究,共同进步, 共同研究,有心得共享呀」· C头文件 代码 · 共 36 行

H
36
字号
/*  timeb.h

    Struct and function declarations for ftime().

    Copyright (c) 1987, 1991 by Borland International
    All Rights Reserved.
*/

#if !defined( __TIMEB_H )
#define __TIMEB_H

#if !defined( __DEFS_H )
#include <_defs.h>
#endif

struct timeb {
      long  time;
      short millitm;
#if defined(_RTLDLL)
      short _timezone;
#else
      short timezone;
#endif
      short dstflag;
      };

#ifdef __cplusplus
extern "C" {
#endif
void _Cdecl ftime(struct timeb *);
#ifdef __cplusplus
}
#endif

#endif  /* __TIMEB_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?