more renaming of constant names

X-Trac-URL: https://ssl.icu-project.org/trac/ticket/6

FAILURE -> U_FAILURE etc.


git-svn-id: http://source.icu-project.org/repos/icu/icu/trunk@81 0a8b766c-62c9-45f9-954d-7f2943c9ead0
This commit is contained in:
Markus Scherer 1999-10-18 23:55:05 +00:00
parent 2922fdeca3
commit 7dda840394
6 changed files with 11 additions and 11 deletions

View file

@ -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 */

View file

@ -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 */

View file

@ -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"

View file

@ -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);

View file

@ -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);

View file

@ -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;