blob: eafd6b4917469ae7cb33fa38be2ba46e7414a7cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
Date: module{
PATH : con "/dis/svc/httpd/date.dis";
init: fn();
dateconv: fn(secs :int): string; # returns an http formatted
# date representing secs.
date2sec: fn(foo:string): int; # parses a date and returns
# number of secs since the
# epoch that it represents.
};
|