cftime and ascftime (ANSI C)
cftime and ascftime (ANSI C)
(OP)
Does anyone know where I can find the code for the cftime and ascftime functions? and possibly the ascii equivalent?
Thanks in advance
M
Thanks in advance
M
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
cftime and ascftime (ANSI C)
|
RE: cftime and ascftime (ANSI C)
Check out the folowing links
For asctime
http://www.cplusplus.com/ref/ctime/asctime.html
http://www.hgmp.mrc.ac.uk/cgi-bin/man.cgi?section=3C&topic=asctime
http://www.hh.se/stud/d98rolb/ansi/asctime().html
http://www.gorillaman.com/mckeeman/writings/c_summary/c_summary.html
http://www.unet.univie.ac.at/aix/libs/basetrf1/ctime.htm
http://ieee.cmpe.emu.edu.tr/text/seminar1.htm
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/html/_crt_strftime.2c_.wcsftime.asp
For cftime
http://osr5doc.ca.caldera.com:457/cgi-bin/man/man?strftime+S
http://www.hgmp.mrc.ac.uk/cgi-bin/man.cgi?section=3C&topic=cftime
http://www.ecn.bris.ac.uk/cgi-bin/man2html?strftime%5B3C%5D
To name but a few.
Any help ?, yes no let me know.
Regards
RE: cftime and ascftime (ANSI C)
Thanks for the links but I'm sorry but none of them actually show the code for cftime or ascftime. I am looking to either rewrite them or find an ascii equivalent.
Thanks
M
RE: cftime and ascftime (ANSI C)
Is it you want the code that executes as the functions are executed or examples of the functions themselves.(I thought you wanted the latter)
If its the former then you want the code that the compiler compiles as it interprets the function from the time.h library. Mmm tricky.
http://www-ccs.ucsd.edu/c/time.html
shows what functions are inside the time.h library
http://vig.prenhall.com/catalog/academic/product/1,4096,0131315099.htm,00.html
A book on the code in the libraries including time.h
Failing that, right a quick program, including the time.h library & the command you want. Compile it then decompile it and see how the command looks.
Any help ?, yes no let me know.
Regards