sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
* FUNCTION
|
sl@0
|
16 |
* <<difftime>>---subtract two times
|
sl@0
|
17 |
* INDEX
|
sl@0
|
18 |
* difftime
|
sl@0
|
19 |
* ANSI_SYNOPSIS
|
sl@0
|
20 |
* #include <time.h>
|
sl@0
|
21 |
* double difftime(time_t <[tim1]>, time_t <[tim2]>);
|
sl@0
|
22 |
* TRAD_SYNOPSIS
|
sl@0
|
23 |
* #include <time.h>
|
sl@0
|
24 |
* double difftime(<[tim1]>, <[tim2]>)
|
sl@0
|
25 |
* time_t <[tim1]>;
|
sl@0
|
26 |
* time_t <[tim2]>;
|
sl@0
|
27 |
* Subtracts the two times in the arguments: `<<<[tim1]> - <[tim2]>>>'
|
sl@0
|
28 |
* that are in seconds.
|
sl@0
|
29 |
* RETURNS
|
sl@0
|
30 |
* The difference (in seconds) between <[tim2]> and <[tim1]>, as a <<double>>.
|
sl@0
|
31 |
* PORTABILITY
|
sl@0
|
32 |
* ANSI C requires <<difftime>>, and defines its result to be in seconds
|
sl@0
|
33 |
* in all implementations.
|
sl@0
|
34 |
* <<difftime>> requires no supporting OS subroutines.
|
sl@0
|
35 |
*
|
sl@0
|
36 |
*
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
|
sl@0
|
39 |
|
sl@0
|
40 |
|
sl@0
|
41 |
#include <time.h>
|
sl@0
|
42 |
|
sl@0
|
43 |
/**
|
sl@0
|
44 |
Return difference between two times.
|
sl@0
|
45 |
Calculates the time difference between tim1 and tim2 in seconds.
|
sl@0
|
46 |
@return The difference in seconds between the two times specified.
|
sl@0
|
47 |
@param tim2 Latter time
|
sl@0
|
48 |
@param tim1 Former time
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
EXPORT_C double
|
sl@0
|
51 |
difftime (time_t tim1, time_t tim2) __SOFTFP
|
sl@0
|
52 |
{
|
sl@0
|
53 |
return ((double) (tim1 - tim2));
|
sl@0
|
54 |
}
|