ulist.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. // © 2016 and later: Unicode, Inc. and others.
  2. // License & terms of use: http://www.unicode.org/copyright.html
  3. /*
  4. ******************************************************************************
  5. * Copyright (C) 2009-2016, International Business Machines
  6. * Corporation and others. All Rights Reserved.
  7. ******************************************************************************
  8. */
  9. #ifndef ULIST_H
  10. #define ULIST_H
  11. #include "unicode/utypes.h"
  12. #include "unicode/uenum.h"
  13. struct UList;
  14. typedef struct UList UList;
  15. U_CAPI UList * U_EXPORT2 ulist_createEmptyList(UErrorCode *status);
  16. U_CAPI void U_EXPORT2 ulist_addItemEndList(UList *list, const void *data, UBool forceDelete, UErrorCode *status);
  17. U_CAPI void U_EXPORT2 ulist_addItemBeginList(UList *list, const void *data, UBool forceDelete, UErrorCode *status);
  18. U_CAPI UBool U_EXPORT2 ulist_containsString(const UList *list, const char *data, int32_t length);
  19. U_CAPI UBool U_EXPORT2 ulist_removeString(UList *list, const char *data);
  20. U_CAPI void *U_EXPORT2 ulist_getNext(UList *list);
  21. U_CAPI int32_t U_EXPORT2 ulist_getListSize(const UList *list);
  22. U_CAPI void U_EXPORT2 ulist_resetList(UList *list);
  23. U_CAPI void U_EXPORT2 ulist_deleteList(UList *list);
  24. /*
  25. * The following are for use when creating UEnumeration object backed by UList.
  26. */
  27. U_CAPI void U_EXPORT2 ulist_close_keyword_values_iterator(UEnumeration *en);
  28. U_CAPI int32_t U_EXPORT2 ulist_count_keyword_values(UEnumeration *en, UErrorCode *status);
  29. U_CAPI const char * U_EXPORT2 ulist_next_keyword_value(UEnumeration* en, int32_t *resultLength, UErrorCode* status);
  30. U_CAPI void U_EXPORT2 ulist_reset_keyword_values_iterator(UEnumeration* en, UErrorCode* status);
  31. U_CAPI UList * U_EXPORT2 ulist_getListFromEnum(UEnumeration *en);
  32. #endif