Skip to content
Maksym Dzyubenko edited this page Oct 8, 2024 · 2 revisions

mdz_ansi_dyn description

mdz_ansi_dyn is dynamically-sized contiguous single-byte string, containing ASCII (0..127) and "ANSI" (128 - 255) characters.

String may contain 0-terminators ('\0') inside, and must end with 0-terminator.

Capacity - how many bytes of memory is reserved for string content.
Size - how many characters are actually residing in a string.

"reserve" functions allocate/reallocate memory dynamically using malloc()/realloc().
"attach" functionality allows attaching contiguous block of memory to string, for using string functions on it.

Test license generation: - in order to get free test-license, please proceed to our Shop page maxdz Shop and register an account. After registration you will be able to obtain free 30-days test-licenses for our products using "Obtain for free" button.

mdz_ansi_dyn_init() with license information should be called for library initialization before any other library call.

mdz_ansi_dyn_init("<first-name-hash>", "<last-name-hash>", "<email-hash>", "<license-hash>");

mdz_ansi_dyn API Reference is generated using mdzApiRefGenerator.
Clone this wiki locally