Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - ddow() return the week day according to german standards http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 ddow()              Return the week day according to German standards
------------------------------------------------------------------------------
 Declaration
   date.hdr

 Syntax
   func int ddow extern
   param value date dDate

 Arguments
   dDate is the date to convert.

 Return
   An integer between 1 and 7.

 Description
   The ddow() function converts dDate into a number representing the day
   of the week. Monday is considered day 1 and Sunday is day 7.

 Example
   #define EXAMPLE_DATE
   #include example.hdr

   proc Test_ddow
   vardef
     date dNow
   enddef
   dNow := today()
   ? dow( dNow )
   ? ddow( dNow )
   endproc

   proc main
   Test_ddow()
   endproc

See Also: dow()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson