2016-06-15 18:58:17 +00:00
|
|
|
// Copyright (C) 2016 and later: Unicode, Inc. and others.
|
|
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
2004-09-07 17:59:53 +00:00
|
|
|
/*
|
|
|
|
*******************************************************************************
|
|
|
|
*
|
2016-05-31 21:45:07 +00:00
|
|
|
* Copyright (C) 2004-2007, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
2004-09-07 17:59:53 +00:00
|
|
|
*
|
|
|
|
*******************************************************************************
|
|
|
|
* file name: uset_imp.h
|
|
|
|
* encoding: US-ASCII
|
|
|
|
* tab size: 8 (not used)
|
|
|
|
* indentation:4
|
|
|
|
*
|
|
|
|
* created on: 2004sep07
|
|
|
|
* created by: Markus W. Scherer
|
|
|
|
*
|
|
|
|
* Internal USet definitions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __USET_IMP_H__
|
|
|
|
#define __USET_IMP_H__
|
|
|
|
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
#include "unicode/uset.h"
|
|
|
|
|
|
|
|
U_CDECL_BEGIN
|
|
|
|
|
|
|
|
typedef void U_CALLCONV
|
|
|
|
USetAdd(USet *set, UChar32 c);
|
|
|
|
|
|
|
|
typedef void U_CALLCONV
|
|
|
|
USetAddRange(USet *set, UChar32 start, UChar32 end);
|
|
|
|
|
|
|
|
typedef void U_CALLCONV
|
|
|
|
USetAddString(USet *set, const UChar *str, int32_t length);
|
|
|
|
|
2005-06-03 20:17:54 +00:00
|
|
|
typedef void U_CALLCONV
|
|
|
|
USetRemove(USet *set, UChar32 c);
|
|
|
|
|
2007-10-24 21:15:41 +00:00
|
|
|
typedef void U_CALLCONV
|
|
|
|
USetRemoveRange(USet *set, UChar32 start, UChar32 end);
|
|
|
|
|
2004-09-07 17:59:53 +00:00
|
|
|
/**
|
|
|
|
* Interface for adding items to a USet, to keep low-level code from
|
|
|
|
* statically depending on the USet implementation.
|
|
|
|
* Calls will look like sa->add(sa->set, c);
|
|
|
|
*/
|
|
|
|
struct USetAdder {
|
|
|
|
USet *set;
|
|
|
|
USetAdd *add;
|
|
|
|
USetAddRange *addRange;
|
|
|
|
USetAddString *addString;
|
2005-06-03 20:17:54 +00:00
|
|
|
USetRemove *remove;
|
2007-10-24 21:15:41 +00:00
|
|
|
USetRemoveRange *removeRange;
|
2004-09-07 17:59:53 +00:00
|
|
|
};
|
|
|
|
typedef struct USetAdder USetAdder;
|
|
|
|
|
|
|
|
U_CDECL_END
|
|
|
|
|
|
|
|
#endif
|
2004-10-15 22:56:26 +00:00
|
|
|
|