@@ -78,39 +78,6 @@ typedef struct {
7878 */
7979#define PRISM_ENCODING_UPPERCASE_BIT 1 << 2
8080
81- /**
82- * Return the size of the next character in the ASCII encoding if it is an
83- * alphabetical character.
84- *
85- * @param b The bytes to read.
86- * @param n The number of bytes that can be read.
87- * @returns The number of bytes that the next character takes if it is valid in
88- * the encoding, or 0 if it is not.
89- */
90- size_t pm_encoding_ascii_alpha_char (const uint8_t * b , PRISM_ATTRIBUTE_UNUSED ptrdiff_t n );
91-
92- /**
93- * Return the size of the next character in the ASCII encoding if it is an
94- * alphanumeric character.
95- *
96- * @param b The bytes to read.
97- * @param n The number of bytes that can be read.
98- * @returns The number of bytes that the next character takes if it is valid in
99- * the encoding, or 0 if it is not.
100- */
101- size_t pm_encoding_ascii_alnum_char (const uint8_t * b , PRISM_ATTRIBUTE_UNUSED ptrdiff_t n );
102-
103- /**
104- * Return true if the next character in the ASCII encoding if it is an uppercase
105- * character.
106- *
107- * @param b The bytes to read.
108- * @param n The number of bytes that can be read.
109- * @returns True if the next character is valid in the encoding and is an
110- * uppercase character, or false if it is not.
111- */
112- bool pm_encoding_ascii_isupper_char (const uint8_t * b , PRISM_ATTRIBUTE_UNUSED ptrdiff_t n );
113-
11481/**
11582 * Return the size of the next character in the UTF-8 encoding if it is an
11683 * alphabetical character.
0 commit comments