1 /*
2 *******************************************************************************
3 *
4 *   Copyright (C) 2003, International Business Machines
5 *   Corporation and others.  All Rights Reserved.
6 *
7 *******************************************************************************
8 *   file name:  uit_len8.h
9 *   encoding:   US-ASCII
10 *   tab size:   8 (not used)
11 *   indentation:4
12 *
13 *   created on: 2003feb10
14 *   created by: Markus W. Scherer
15 *
16 *   This file contains the declaration for a "lenient UTF-8" UCharIterator
17 *   as used in the uciter8 sample code.
18 */
19 
20 #ifndef __UIT_LEN8_H__
21 #define __UIT_LEN8_H__
22 
23 #include "unicode/utypes.h"
24 #include "unicode/uiter.h"
25 
26 U_CAPI void U_EXPORT2
27 uiter_setLenient8(UCharIterator *iter, const char *s, int32_t length);
28 
29 #endif
30