summaryrefslogtreecommitdiffstats
path: root/private/crt32/time/ctime.c
blob: 28e48c43bd91cba692da68cb72f7467af38f84f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/***
*ctime.c - convert time argument into ASCII string
*
*	Copyright (c) 1985-1991, Microsoft Corporation. All rights reserved.
*
*Purpose:
*	contains ctime() - convert time value to string
*
*Revision History:
*	03-??-84  RLB	initial version
*	05-??-84  DFW	split off into seperate module
*	02-18-87  JCR	put in NULL ptr support
*	04-10-87  JCR	changed long declaration ot time_t and added const.
*	12-11-87  JCR	Added "_LOAD_DS" to declaration
*	03-20-90  GJF	Replaced _LOAD_DS with _CALLTYPE1, added #include
*			<cruntime.h> and fixed the copyright. Also, cleaned
*			up the formatting a bit.
*	05-21-90  GJF	Fixed compiler warning.
*	10-04-90  GJF	New-style function declarators.
*
*******************************************************************************/

#include <cruntime.h>
#include <time.h>
#include <stddef.h>

/***
*char *ctime(time) - converts a time stored as a long to a ASCII string
*
*Purpose:
*	Converts a time stored as a long (time_t) to an ASCII string of
*	the form:
*	       Tue May 1 14:25:03 1984
*
*Entry:
*	long *time - time value in XENIX format
*
*Exit:
*	returns pointer to static string or NULL if time is before
*	Jan 1 1980.
*
*Exceptions:
*
*******************************************************************************/

char * _CALLTYPE1 ctime (
	const time_t *timp
	)
{
	struct tm *tmtemp;

	if ((tmtemp=localtime(timp)) != NULL)
		return(asctime((const struct tm *)tmtemp));
	else
		return(NULL);
}