Next: , Previous: Critical information, Up: MIN Text interface usage


11.2 Usage example

     Text *string = tx_create("MIN");  // allocate Text with "MIN"
                                       // as initializer
     
     tx_c_append(" is great");         // modification of Text data
     
     tx_destroy(&string);              // deallocate Text, and buffer
                                       // used to hold string data