21#if defined(_WIN32) && !defined(DECANCER_STATIC)
22#define DECANCER_EXPORT __declspec(dllimport)
24#define DECANCER_EXPORT
35#define DECANCER_VERSION 0x030303
45#define DECANCER_VERSION_MAJOR ((DECANCER_VERSION & 0xff0000) >> 16)
55#define DECANCER_VERSION_MINOR ((DECANCER_VERSION & 0xff00) >> 8)
65#define DECANCER_VERSION_PATCH (DECANCER_VERSION & 0xff)
71#define DECANCER_TRANSLATION_KIND_CHARACTER 0
77#define DECANCER_TRANSLATION_KIND_STRING 1
85#define DECANCER_TRANSLATION_KIND_NONE 2
93#define DECANCER_OPTION_DEFAULT 0
101#define DECANCER_OPTION_RETAIN_CAPITALIZATION (1 << 0)
114#define DECANCER_OPTION_DISABLE_BIDI (1 << 1)
124#define DECANCER_OPTION_DISABLE_LEETSPEAK (1 << 2)
134#define DECANCER_OPTION_DISABLE_ALPHABETICAL_LEETSPEAK (1 << 3)
142#define DECANCER_OPTION_RETAIN_DIACRITICS (1 << 4)
148#define DECANCER_OPTION_RETAIN_GREEK (1 << 5)
154#define DECANCER_OPTION_RETAIN_CYRILLIC (1 << 6)
160#define DECANCER_OPTION_RETAIN_HEBREW (1 << 7)
166#define DECANCER_OPTION_RETAIN_ARABIC (1 << 8)
172#define DECANCER_OPTION_RETAIN_DEVANAGARI (1 << 9)
178#define DECANCER_OPTION_RETAIN_BENGALI (1 << 10)
184#define DECANCER_OPTION_RETAIN_ARMENIAN (1 << 11)
190#define DECANCER_OPTION_RETAIN_GUJARATI (1 << 12)
196#define DECANCER_OPTION_RETAIN_TAMIL (1 << 13)
202#define DECANCER_OPTION_RETAIN_THAI (1 << 14)
208#define DECANCER_OPTION_RETAIN_LAO (1 << 15)
214#define DECANCER_OPTION_RETAIN_BURMESE (1 << 16)
220#define DECANCER_OPTION_RETAIN_KHMER (1 << 17)
226#define DECANCER_OPTION_RETAIN_MONGOLIAN (1 << 18)
232#define DECANCER_OPTION_RETAIN_CHINESE (1 << 19)
241#define DECANCER_OPTION_RETAIN_JAPANESE (1 << 20)
247#define DECANCER_OPTION_RETAIN_KOREAN (1 << 21)
253#define DECANCER_OPTION_RETAIN_BRAILLE (1 << 22)
259#define DECANCER_OPTION_RETAIN_EMOJIS (1 << 23)
268#define DECANCER_OPTION_RETAIN_TURKISH (1 << 24)
276#define DECANCER_OPTION_ASCII_ONLY (1 << 25)
284#define DECANCER_OPTION_ALPHANUMERIC_ONLY (1 << 26)
290#define DECANCER_OPTION_ALL 0x7ffffff
296#define DECANCER_OPTION_PURE_HOMOGLYPH 0xfffff0
326#ifndef DECANCER_UTF16_ONLY
357#ifndef DECANCER_UTF8_ONLY
399#ifndef DECANCER_UTF16_ONLY
415#ifndef DECANCER_UTF8_ONLY
604#ifndef DECANCER_UTF16_ONLY
652#ifndef DECANCER_UTF8_ONLY
829#ifndef DECANCER_UTF16_ONLY
889#ifndef DECANCER_UTF8_ONLY
1050#ifndef DECANCER_UTF16_ONLY
1134#ifndef DECANCER_UTF8_ONLY
1230#ifndef DECANCER_UTF16_ONLY
1330#ifndef DECANCER_UTF8_ONLY
1445#ifndef DECANCER_UTF16_ONLY
1522#ifndef DECANCER_UTF8_ONLY
1611#ifndef DECANCER_UTF16_ONLY
1679#ifndef DECANCER_UTF8_ONLY
1764#ifndef DECANCER_UTF16_ONLY
1829 DECANCER_EXPORT
bool decancer_replace(
decancer_cured_t cured,
const uint8_t* other_str,
const size_t other_size,
const uint8_t* replacement_str,
const size_t replacement_size);
1832#ifndef DECANCER_UTF8_ONLY
1920#ifndef DECANCER_UTF16_ONLY
1994#ifndef DECANCER_UTF8_ONLY
2088#ifndef DECANCER_UTF16_ONLY
2162#ifndef DECANCER_UTF8_ONLY
2259#ifndef DECANCER_UTF16_ONLY
2316#ifndef DECANCER_UTF8_ONLY
2382#ifndef DECANCER_UTF16_ONLY
2439#ifndef DECANCER_UTF8_ONLY
2505#ifndef DECANCER_UTF16_ONLY
2562#ifndef DECANCER_UTF8_ONLY
2628#ifndef DECANCER_UTF16_ONLY
2685#ifndef DECANCER_UTF8_ONLY
2773#ifndef DECANCER_UTF16_ONLY
2861#ifndef DECANCER_UTF8_ONLY
3047#undef DECANCER_EXPORT
DECANCER_EXPORT void decancer_disable_alphabetical_leetspeak(decancer_cured_t cured, const bool switch_)
Prevents decancer from applying alphabetical leetspeak comparisons in comparison methods.
DECANCER_EXPORT bool decancer_replace_utf16(decancer_cured_t cured, const uint16_t *other_str, const size_t other_length, const uint16_t *replacement_str, const size_t replacement_length)
Replaces every similar-looking match of the specified UTF-16 encoded string with another UTF-16 encod...
DECANCER_EXPORT bool decancer_contains_utf16(decancer_cured_t cured, const uint16_t *other_str, const size_t other_length)
Checks if the cured string similarly contains the specified UTF-16 encoded string.
DECANCER_EXPORT const decancer_match_t * decancer_matches_raw(decancer_matches_t matches, size_t *output_size)
Returns the raw list of every similar-looking match from a decancer_matches_t object.
DECANCER_EXPORT void decancer_cured_raw_utf16_free(decancer_cured_raw_utf16_t raw_utf16_handle)
Frees the rust object created by decancer_cured_raw_utf16.
DECANCER_EXPORT bool decancer_equals_utf16(decancer_cured_t cured, const uint16_t *other_str, const size_t other_length)
Checks if the cured string is similar with the specified UTF-16 encoded string.
DECANCER_EXPORT decancer_cured_t decancer_cured_clone(decancer_cured_t cured)
Clones the cured string object created by decancer_cure and decancer_cure_utf16.
DECANCER_EXPORT decancer_matcher_t decancer_find(decancer_cured_t cured, const uint8_t *other_str, const size_t other_size)
Finds every similar-looking match of a UTF-8 encoded string in the cured string.
DECANCER_EXPORT bool decancer_replace_multiple(decancer_cured_t cured, const decancer_keyword_t *other, const size_t other_length, const uint8_t *replacement_str, const size_t replacement_size)
Replaces every similar-looking match of the specified list of UTF-8 keywords with another UTF-8 encod...
DECANCER_EXPORT bool decancer_censor_multiple_utf16(decancer_cured_t cured, const decancer_keyword_utf16_t *other, const size_t other_length, const uint32_t replacement_char)
Censors every similar-looking match of the specified list of UTF-16 keywords. Unlike decancer_censor_...
DECANCER_EXPORT void decancer_translation_init(decancer_translation_t *translation)
Initiates a newly created translation struct for use.
DECANCER_EXPORT decancer_matcher_utf16_t decancer_find_utf16(decancer_cured_t cured, const uint16_t *other_str, const size_t other_length)
Finds every similar-looking match of a UTF-16 encoded string in the cured string.
DECANCER_EXPORT bool decancer_replace_multiple_utf16(decancer_cured_t cured, const decancer_keyword_utf16_t *other, const size_t other_length, const uint16_t *replacement_str, const size_t replacement_length)
Replaces every similar-looking match of the specified list of UTF-16 keywords with another UTF-16 enc...
DECANCER_EXPORT void decancer_cured_free(decancer_cured_t cured)
Frees the cured string object created by decancer_cure and decancer_cure_utf16.
uint32_t decancer_options_t
An unsigned 32-bit bitflags that lets you customize decancer's behavior in its curing functions.
Definition decancer.h:598
DECANCER_EXPORT decancer_cured_raw_utf16_t decancer_cured_raw_utf16(decancer_cured_t cured, const decancer_match_t *match, uint16_t **output_ptr, size_t *output_length)
Retrieves the raw UTF-16 bytes from a cured string object.
void * decancer_matcher_t
Represents a UTF-8 matcher iterator object returned from decancer_find.
Definition decancer.h:412
DECANCER_EXPORT decancer_matches_t decancer_matches_clone(decancer_matches_t matches)
Clones the matches object created by decancer_find_multiple and decancer_find_multiple_utf16.
DECANCER_EXPORT decancer_matches_t decancer_find_multiple(decancer_cured_t cured, const decancer_keyword_t *other, const size_t other_length)
Finds every similar-looking match from a list of UTF-8 keywords in the cured string....
DECANCER_EXPORT bool decancer_starts_with_utf16(decancer_cured_t cured, const uint16_t *other_str, const size_t other_length)
Checks if the cured string similarly starts with the specified UTF-16 encoded string.
DECANCER_EXPORT bool decancer_censor_multiple(decancer_cured_t cured, const decancer_keyword_t *other, const size_t other_length, const uint32_t replacement_char)
Censors every similar-looking match of the specified list of UTF-8 keywords. Unlike decancer_censor,...
void * decancer_cured_t
Represents a cured string returned from decancer_cure and decancer_cure_utf16.
Definition decancer.h:529
DECANCER_EXPORT bool decancer_censor(decancer_cured_t cured, const uint8_t *other_str, const size_t other_size, const uint32_t replacement_char)
Censors every similar-looking match of the specified UTF-8 encoded string.
void * decancer_cured_raw_utf16_t
Represents a rust object returned from decancer_cured_raw_utf16. This value has no use other than ret...
Definition decancer.h:396
DECANCER_EXPORT void decancer_matches_free(decancer_matches_t matches)
Frees the matches object created by decancer_find_multiple and decancer_find_multiple_utf16.
DECANCER_EXPORT decancer_matches_t decancer_find_multiple_utf16(decancer_cured_t cured, const decancer_keyword_utf16_t *other, const size_t other_length)
Finds every similar-looking match from a list of UTF-16 keywords in the cured string....
DECANCER_EXPORT void decancer_matcher_utf16_free(decancer_matcher_utf16_t matcher)
Frees the UTF-16 matcher iterator object created by decancer_find_utf16.
DECANCER_EXPORT decancer_cured_raw_utf16_t decancer_cured_raw_utf16_clone(decancer_cured_raw_utf16_t raw_utf16_handle)
Clones the rust object created by decancer_cured_raw_utf16.
DECANCER_EXPORT void decancer_translation_clone(const decancer_translation_t *translation_in, decancer_translation_t *translation_out)
Clones the translation struct used in decancer_cure_char.
DECANCER_EXPORT decancer_matches_t decancer_matcher_consume(decancer_matcher_t matcher)
Consumes the UTF-8 matcher iterator object created by decancer_find and returns a matches object.
DECANCER_EXPORT decancer_cured_t decancer_cure_utf16(const uint16_t *input_str, const size_t input_length, const decancer_options_t options, decancer_error_t *error)
Cures a UTF-16 encoded string.
DECANCER_EXPORT bool decancer_matcher_utf16_next(decancer_matcher_utf16_t matcher, decancer_match_t *match)
Iterates to the next element of a UTF-16 matcher iterator.
DECANCER_EXPORT bool decancer_contains(decancer_cured_t cured, const uint8_t *other_str, const size_t other_size)
Checks if the cured string similarly contains the specified UTF-8 encoded string.
DECANCER_EXPORT void decancer_disable_leetspeak(decancer_cured_t cured, const bool switch_)
Prevents decancer from applying leetspeak comparisons in comparison methods.
DECANCER_EXPORT bool decancer_replace(decancer_cured_t cured, const uint8_t *other_str, const size_t other_size, const uint8_t *replacement_str, const size_t replacement_size)
Replaces every similar-looking match of the specified UTF-8 encoded string with another UTF-8 encoded...
DECANCER_EXPORT bool decancer_ends_with_utf16(decancer_cured_t cured, const uint16_t *other_str, const size_t other_length)
Checks if the cured string similarly ends with the specified UTF-16 encoded string.
DECANCER_EXPORT void decancer_translation_free(decancer_translation_t *translation)
Frees the translation struct used in decancer_cure_char.
DECANCER_EXPORT decancer_cured_t decancer_cure(const uint8_t *input_str, const size_t input_size, const decancer_options_t options, decancer_error_t *error)
Cures a UTF-8 encoded string.
DECANCER_EXPORT void decancer_cure_char(const uint32_t input, const decancer_options_t options, decancer_translation_t *translation)
Cures a single unicode codepoint.
DECANCER_EXPORT bool decancer_equals(decancer_cured_t cured, const uint8_t *other_str, const size_t other_size)
Checks if the cured string is similar with the specified UTF-8 encoded string.
DECANCER_EXPORT bool decancer_ends_with(decancer_cured_t cured, const uint8_t *other_str, const size_t other_size)
Checks if the cured string similarly ends with the specified UTF-8 encoded string.
DECANCER_EXPORT bool decancer_matcher_next(decancer_matcher_t matcher, decancer_match_t *match)
Iterates to the next element of a UTF-8 matcher iterator.
void * decancer_matcher_utf16_t
Represents a UTF-16 matcher iterator object returned from decancer_find_utf16.
Definition decancer.h:428
DECANCER_EXPORT const uint8_t * decancer_cured_raw(decancer_cured_t cured, const decancer_match_t *match, size_t *output_size)
Retrieves the raw UTF-8 bytes from a cured string object.
DECANCER_EXPORT void decancer_matcher_free(decancer_matcher_t matcher)
Frees the UTF-8 matcher iterator object created by decancer_find.
DECANCER_EXPORT decancer_matches_t decancer_matcher_utf16_consume(decancer_matcher_utf16_t matcher)
Consumes the UTF-16 matcher iterator object created by decancer_find_utf16 and returns a matches obje...
DECANCER_EXPORT bool decancer_starts_with(decancer_cured_t cured, const uint8_t *other_str, const size_t other_size)
Checks if the cured string similarly starts with the specified UTF-8 encoded string.
void * decancer_matches_t
Represents a matcher iterator object returned from decancer_find_multiple and decancer_find_multiple_...
Definition decancer.h:443
DECANCER_EXPORT bool decancer_censor_utf16(decancer_cured_t cured, const uint16_t *other_str, const size_t other_length, const uint32_t replacement_char)
Censors every similar-looking match of the specified UTF-16 encoded string.
Represents an error caused by decancer not being able to cure a string.
Definition decancer.h:312
uint8_t message_length
The length of the error message.
Definition decancer.h:323
const char * message
Null-terminated ASCII encoded error message.
Definition decancer.h:317
Represents a UTF-8 encoded keyword. This struct is often used inside an array.
Definition decancer.h:342
size_t size
UTF-8 size of the string, in bytes.
Definition decancer.h:353
const uint8_t * string
UTF-8 encoded string.
Definition decancer.h:347
Represents a UTF-16 encoded keyword. This struct is often used inside an array.
Definition decancer.h:373
size_t length
Length of the UTF-16 encoded string in units of uint16_t – or sizeof(string) / sizeof(uint16_t).
Definition decancer.h:384
const uint16_t * string
UTF-16 encoded string.
Definition decancer.h:378
Represents a match in UTF-8 indices.
Definition decancer.h:547
size_t end
End of the match in UTF-8 indices (non-inclusive).
Definition decancer.h:558
size_t start
Start of the match in UTF-8 indices.
Definition decancer.h:552
Represents a translation of a unicode codepoint.
Definition decancer.h:471
uint32_t character
The translation, as a unicode character.
Definition decancer.h:490
uint8_t kind
The type of the translation result. This can be any of the following values:
Definition decancer.h:479
void * __heap
A pointer to a heap memory block, unused.
Definition decancer.h:514
const uint8_t * contents
Raw UTF-8 encoded string.
Definition decancer.h:501
size_t size
UTF-8 size of the string, in bytes.
Definition decancer.h:507