code: 9ferno

ref: 6966e8d72ae8fb72ebf98909acbd464aff84a3cc
dir: /appl/charon/date.m/

View raw version

Date: module{
	PATH : con "/dis/charon/date.dis";

	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. 
	now: fn(): int;		# so don't have to load daytime too
	init: fn(cu: CharonUtils);
};