mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 09:21:03 +00:00
ICU-6 more renaming of constant names
FAILURE -> U_FAILURE etc. X-SVN-Rev: 81
This commit is contained in:
parent
1966fd0e50
commit
f8b331314a
6 changed files with 11 additions and 11 deletions
|
@ -26,6 +26,6 @@
|
|||
#include "utypes.h"
|
||||
|
||||
/* Print a ustring to the specified FILE* in the default codepage */
|
||||
CAPI void uprint(const UChar *s, FILE *f, UErrorCode *status);
|
||||
U_CAPI void uprint(const UChar *s, FILE *f, UErrorCode *status);
|
||||
|
||||
#endif /* ! UPRINT_H */
|
||||
|
|
|
@ -26,6 +26,6 @@
|
|||
#include "utypes.h"
|
||||
|
||||
/* Print a ustring to the specified FILE* in the default codepage */
|
||||
CAPI void uprint(const UChar *s, FILE *f, UErrorCode *status);
|
||||
U_CAPI void uprint(const UChar *s, FILE *f, UErrorCode *status);
|
||||
|
||||
#endif /* ! UPRINT_H */
|
||||
|
|
|
@ -18,8 +18,8 @@
|
|||
* Madhu Katragadda Converted to C
|
||||
*********************************************************************************
|
||||
*/
|
||||
#ifndef _CCAPITSTST
|
||||
#define _CCAPITSTST
|
||||
#ifndef _CU_CAPITSTST
|
||||
#define _CU_CAPITSTST
|
||||
/* C API TEST FOR CODESET CONVERSION COMPONENT */
|
||||
#include "cintltst.h"
|
||||
#include "utypes.h"
|
||||
|
|
|
@ -41,11 +41,11 @@ static void TestLegalAndOthers(int32_t inputsize, int32_t outputsize);
|
|||
static void TestSingleByte(int32_t inputsize, int32_t outputsize);
|
||||
|
||||
bool_t testConvertFromUnicode(const UChar *source, int sourceLen, const char *expect, int expectLen,
|
||||
const char *codepage, UCNV_FromUCallBack callback, int32_t *expectOffsets);
|
||||
const char *codepage, UConverterFromUCallback callback, int32_t *expectOffsets);
|
||||
|
||||
|
||||
bool_t testConvertToUnicode( const char *source, int sourcelen, const UChar *expect, int expectlen,
|
||||
const char *codepage, UCNV_ToUCallBack callback, int32_t *expectOffsets);
|
||||
const char *codepage, UConverterToUCallback callback, int32_t *expectOffsets);
|
||||
|
||||
|
||||
static void printSeq(const char* a, int len);
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
Bertrand A. D.*/
|
||||
|
||||
#include "utypes.h"
|
||||
CAPI void printUChar(const UChar* uniString);
|
||||
CAPI void printChar( const char* charString);
|
||||
U_CAPI void printUChar(const UChar* uniString);
|
||||
U_CAPI void printChar( const char* charString);
|
||||
|
||||
CAPI void T_PlatformUtilities_pathnameInContext( char *fullname, int32_t maxsize, const char * relPath);
|
||||
CAPI const char *T_PlatformUtilities_getDefaultDataDirectory(void);
|
||||
U_CAPI void T_PlatformUtilities_pathnameInContext( char *fullname, int32_t maxsize, const char * relPath);
|
||||
U_CAPI const char *T_PlatformUtilities_getDefaultDataDirectory(void);
|
||||
|
|
|
@ -1031,7 +1031,7 @@ void IntlTestTextBoundary::runIndexedTest( int32_t index, bool_t exec, char* &na
|
|||
name = "BreakIteratorCAPI";
|
||||
if (exec) {
|
||||
logln("BreakIterator C API test---"); logln("");
|
||||
IntlTestBreakIteratorFormatCAPI test;
|
||||
IntlTestBreakIteratorFormatU_CAPI test;
|
||||
callTest( test, par );
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue