comparison scripts/time/asctime.m @ 3426:f8dde1807dee

[project @ 2000-01-13 08:40:00 by jwe]
author jwe
date Thu, 13 Jan 2000 08:40:53 +0000
parents 02866242d3ae
children 4c8a2e4e0717
comparison
equal deleted inserted replaced
3425:8625164a0a39 3426:f8dde1807dee
19 19
20 ## -*- texinfo -*- 20 ## -*- texinfo -*-
21 ## @deftypefn {Function File} {} asctime (@var{tm_struct}) 21 ## @deftypefn {Function File} {} asctime (@var{tm_struct})
22 ## Convert a time structure to a string using the following five-field 22 ## Convert a time structure to a string using the following five-field
23 ## format: Thu Mar 28 08:40:14 1996. For example, 23 ## format: Thu Mar 28 08:40:14 1996. For example,
24 ## 24 ##
25 ## @example 25 ## @example
26 ## @group 26 ## @group
27 ## asctime (localtime (time ()) 27 ## asctime (localtime (time ())
28 ## @result{} "Mon Feb 17 01:15:06 1997\n" 28 ## @result{} "Mon Feb 17 01:15:06 1997\n"
29 ## @end group 29 ## @end group
30 ## @end example 30 ## @end example
31 ## 31 ##
32 ## This is equivalent to @code{ctime (time ())}. 32 ## This is equivalent to @code{ctime (time ())}.
33 ## @end deftypefn 33 ## @end deftypefn
34 34
35 ## Author: jwe 35 ## Author: jwe
36 36