2020-09-06 05:43:07 -07:00

6 lines
108 B
C

void do_tests() {
string tm = ctime(0);
ASSERT(stringp(tm));
ASSERT(strsrch(tm, '\n') == -1);
}