You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.6 KiB
39 lines
1.6 KiB
4 months ago
|
// © 2016 and later: Unicode, Inc. and others.
|
||
|
// License & terms of use: http://www.unicode.org/copyright.html
|
||
|
/********************************************************************
|
||
|
* COPYRIGHT:
|
||
|
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
||
|
* others. All Rights Reserved.
|
||
|
********************************************************************/
|
||
|
/********************************************************************************
|
||
|
*
|
||
|
* File NCCBTST.H
|
||
|
*
|
||
|
* Modification History:
|
||
|
* Name Description
|
||
|
* Madhu Katragadda creation
|
||
|
*********************************************************************************
|
||
|
*/
|
||
|
#ifndef _NCNVFBTS
|
||
|
#define _NCNVFBTS
|
||
|
/* C API TEST FOR FALL BACK ROUTINES OF CODESET CONVERSION COMPONENT */
|
||
|
#include "cintltst.h"
|
||
|
#include "unicode/utypes.h"
|
||
|
|
||
|
static void TestConverterFallBack(void);
|
||
|
static void TestConvertFallBackWithBufferSizes(int32_t outsize, int32_t insize );
|
||
|
static UBool testConvertFromUnicode(const UChar *source, int sourceLen, const uint8_t *expect, int expectLen,
|
||
|
const char *codepage, UBool fallback, const int32_t *expectOffsets);
|
||
|
static UBool testConvertToUnicode( const uint8_t *source, int sourcelen, const UChar *expect, int expectlen,
|
||
|
const char *codepage, UBool fallback, const int32_t *expectOffsets);
|
||
|
|
||
|
|
||
|
static void printSeq(const unsigned char* a, int len);
|
||
|
static void printUSeq(const UChar* a, int len);
|
||
|
static void printSeqErr(const unsigned char* a, int len);
|
||
|
static void printUSeqErr(const UChar* a, int len);
|
||
|
static void setNuConvTestName(const char *codepage, const char *direction);
|
||
|
|
||
|
|
||
|
#endif
|