view test/octave.test/system/localtime-1.m @ 4030:22bd65326ec1

[project @ 2002-08-09 18:58:13 by jwe]
author jwe
date Fri, 09 Aug 2002 19:00:16 +0000
parents 7c96e85c76db
children d7d9ca19960a
line wrap: on
line source

ts = localtime (time ())
(isstruct (ts)
 && struct_contains (ts, "usec")
 && struct_contains (ts, "year")
 && struct_contains (ts, "mon")
 && struct_contains (ts, "mday")
 && struct_contains (ts, "sec")
 && struct_contains (ts, "min")
 && struct_contains (ts, "wday")
 && struct_contains (ts, "hour")
 && struct_contains (ts, "isdst")
 && struct_contains (ts, "yday"))