aa0b0a88e8
X-SVN-Rev: 2
51 lines
1.6 KiB
C
51 lines
1.6 KiB
C
/*
|
|
*******************************************************************************
|
|
* *
|
|
* COPYRIGHT: *
|
|
* (C) Copyright International Business Machines Corporation, 1998, 1999 *
|
|
* Licensed Material - Program-Property of IBM - All Rights Reserved. *
|
|
* US Government Users Restricted Rights - Use, duplication, or disclosure *
|
|
* restricted by GSA ADP Schedule Contract with IBM Corp. *
|
|
* *
|
|
*******************************************************************************
|
|
*
|
|
* File ustr.h
|
|
*
|
|
* Modification History:
|
|
*
|
|
* Date Name Description
|
|
* 05/28/99 stephen Creation.
|
|
*******************************************************************************
|
|
*/
|
|
|
|
#ifndef USTR_H
|
|
#define USTR_H 1
|
|
|
|
#include "utypes.h"
|
|
|
|
/* A C representation of a string "object" (to avoid realloc all the time) */
|
|
struct UString {
|
|
UChar *fChars;
|
|
int32_t fLength;
|
|
int32_t fCapacity;
|
|
};
|
|
|
|
void ustr_init(struct UString *s);
|
|
|
|
void ustr_deinit(struct UString *s);
|
|
|
|
void ustr_setlen(struct UString *s, int32_t len, UErrorCode *status);
|
|
|
|
void ustr_cpy(struct UString *dst, const struct UString *src,
|
|
UErrorCode *status);
|
|
|
|
void ustr_cat(struct UString *dst, const struct UString *src,
|
|
UErrorCode *status);
|
|
|
|
void ustr_ncat(struct UString *dst, const struct UString *src,
|
|
int32_t n, UErrorCode *status);
|
|
|
|
void ustr_ucat(struct UString *dst, UChar c, UErrorCode *status);
|
|
|
|
#endif
|