@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>}.


