CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 1999
    Posts
    7

    strftime(), localtime() & _ftime() MAX and Min range



    Can someone help me with the maximum and minimum range of these time functions


    thanks

  2. #2
    Join Date
    Apr 1999
    Posts
    383

    Re: strftime(), localtime() & _ftime() MAX and Min range



    The online docs say that mktime handles dates in any time zone from midnight, January 1, 1970, to January 18, 19:14:07, 2038. Since it uses the time_t type that strftime(), localtime() & _ftime() do, I'd guess that's it.


    It's all there if you look.


    Dave

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured