Files
harbour-core/contrib/hbnf/min2dhm.prg
vszakats 9687850865 2013-03-16 02:10 UTC+0100 Viktor Szakats (harbour syenar.net)
* (all files)
    * stripped svn header
    * minor cleanups
    ; use following command to find out the history of files:
       git log
       git log --follow
       git blame
       git annotate
2013-03-16 02:11:42 +01:00

30 lines
749 B
Plaintext

/*
* Author....: Alexander B. Spencer
* CIS ID....: 76276,1012
*
* This is an original work by Alexander B. Spencer and is placed in the
* public domain.
*
* Modification history:
* ---------------------
*
* Rev 1.3 17 Aug 1991 15:33:50 GLENN
* Don Caton fixed some spelling errors in the doc
*
* Rev 1.2 15 Aug 1991 23:04:46 GLENN
* Forest Belt proofread/edited/cleaned up doc
*
* Rev 1.1 14 Jun 1991 19:52:26 GLENN
* Minor edit to file header
*
* Rev 1.0 07 Jun 1991 23:39:50 GLENN
* Initial revision.
*
*/
FUNCTION ft_Min2Dhm( nMins )
RETURN { ;
hb_ntos( Int( nMins / 1440 ) ), ;
hb_ntos( Int( ( nMins % 1440 ) / 60 ) ), ;
hb_ntos( Int( ( nMins % 1440 ) % 60 ) ) }