| OLD | NEW |
| (Empty) |
| 1 /******************************************************************** | |
| 2 * COPYRIGHT: | |
| 3 * Copyright (c) 1997-2001, International Business Machines Corporation and | |
| 4 * others. All Rights Reserved. | |
| 5 ********************************************************************/ | |
| 6 /*******************************************************************************
* | |
| 7 * | |
| 8 * File CFORMTST.H | |
| 9 * | |
| 10 * Modification History: | |
| 11 * Name Description | |
| 12 * Madhu Katragadda Creation | |
| 13 ********************************************************************************
* | |
| 14 */ | |
| 15 /* FormatTest is a medium top level test for everything in the C FORMAT API */ | |
| 16 | |
| 17 #ifndef _CFORMATTST | |
| 18 #define _CFORMATTST | |
| 19 | |
| 20 #include "unicode/utypes.h" | |
| 21 | |
| 22 #if !UCONFIG_NO_FORMATTING | |
| 23 | |
| 24 #include "cintltst.h" | |
| 25 #include "unicode/udat.h" | |
| 26 | |
| 27 | |
| 28 /* Internal fucntion used by all the test format files */ | |
| 29 UChar* myDateFormat(UDateFormat *dat, UDate d); | |
| 30 | |
| 31 #endif /* #if !UCONFIG_NO_FORMATTING */ | |
| 32 | |
| 33 #endif | |
| OLD | NEW |