32 lines
633 B
C++
32 lines
633 B
C++
#ifndef ICU4XLeadingAdjustment_H
|
|
#define ICU4XLeadingAdjustment_H
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
#include "diplomat_runtime.h"
|
|
|
|
#ifdef __cplusplus
|
|
namespace capi {
|
|
#endif
|
|
|
|
typedef enum ICU4XLeadingAdjustment {
|
|
ICU4XLeadingAdjustment_Auto = 0,
|
|
ICU4XLeadingAdjustment_None = 1,
|
|
ICU4XLeadingAdjustment_ToCased = 2,
|
|
} ICU4XLeadingAdjustment;
|
|
#ifdef __cplusplus
|
|
} // namespace capi
|
|
#endif
|
|
#ifdef __cplusplus
|
|
namespace capi {
|
|
extern "C" {
|
|
#endif
|
|
|
|
void ICU4XLeadingAdjustment_destroy(ICU4XLeadingAdjustment* self);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
} // namespace capi
|
|
#endif
|
|
#endif
|