Typedefs | |
| typedef struct _AlphaMap | AlphaMap |
| AlphaMap data type. | |
Functions | |
| AlphaMap * | alpha_map_new () |
| Create new alphabet map. | |
| AlphaMap * | alpha_map_clone (const AlphaMap *a_map) |
| Create a clone of alphabet map. | |
| void | alpha_map_free (AlphaMap *alpha_map) |
| Free an alphabet map object. | |
| int | alpha_map_add_range (AlphaMap *alpha_map, AlphaChar begin, AlphaChar end) |
| Add a range to alphabet map. | |
| int | alpha_char_strlen (const AlphaChar *str) |
| Alphabet string length. | |
| int alpha_char_strlen | ( | const AlphaChar * | str | ) |
Alphabet string length.
| str | : the array of null-terminated AlphaChar string to measure |
Add a range to alphabet map.
| alpha_map | : the alphabet map object | |
| begin | : the first character of the range | |
| end | : the last character of the range |
Create a clone of alphabet map.
| a_map | : the source alphabet map to clone |
| void alpha_map_free | ( | AlphaMap * | alpha_map | ) |
Free an alphabet map object.
| alpha_map | : the alphabet map object to free |
| AlphaMap* alpha_map_new | ( | ) |
Create new alphabet map.
The created object must be freed with alpha_map_free().
1.5.7