trisquel-icecat/icecat/intl/icu_capi/bindings/c/ICU4XDateLength.h
2025-10-06 02:35:48 -06:00

33 lines
598 B
C++

#ifndef ICU4XDateLength_H
#define ICU4XDateLength_H
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include "diplomat_runtime.h"
#ifdef __cplusplus
namespace capi {
#endif
typedef enum ICU4XDateLength {
ICU4XDateLength_Full = 0,
ICU4XDateLength_Long = 1,
ICU4XDateLength_Medium = 2,
ICU4XDateLength_Short = 3,
} ICU4XDateLength;
#ifdef __cplusplus
} // namespace capi
#endif
#ifdef __cplusplus
namespace capi {
extern "C" {
#endif
void ICU4XDateLength_destroy(ICU4XDateLength* self);
#ifdef __cplusplus
} // extern "C"
} // namespace capi
#endif
#endif