ct

来自「Algorithms for Image Processing and Comp」· 代码 · 共 38 行

TXT
38
字号
@c ----------------------------------------------------------------------
@node ctime, time
@heading @code{ctime}
@subheading Syntax

@example
#include <time.h>

char *ctime(const time_t *cal);
@end example

@subheading Description

This function returns an ASCII representation of the time in @var{cal}. 
This is equivalent to @code{asctime(localtime(cal))}.  @xref{asctime}
@xref{localtime}

@subheading Return Value

The ascii representation of the time.

@c ----------------------------------------------------------------------
@node _ctype_, ctype
@heading @code{_ctype_}
@subheading Syntax

@example
#include <ctype.h>

extern char _ctype_[257];
@end example

@subheading Description

This is an array used by the functions and macros in @code{<ctype.h>}.


⌨️ 快捷键说明

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