Added lots of functions from time.h

git-svn-id: svn://svn.cc65.org/cc65/trunk@1507 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-11-12 22:06:02 +00:00
parent cae19c1a8a
commit 43d8ecd567
8 changed files with 469 additions and 0 deletions

19
libsrc/common/ctime.s Normal file
View File

@@ -0,0 +1,19 @@
;
; Ullrich von Bassewitz, 12.11.2002
;
; char* __fastcall__ ctime (time_t* timep);
;
.export _ctime
.import _localtime, _asctime
.proc _ctime
; return asctime (localtime (timep));
jsr _localtime
jmp _asctime
.endproc