I've got an array of characters which contains a string:
char buf[MAXBUFLEN]; buf[0] = 'f'; buf[1] = 'o'; buf[2] = 'o'; buf[3] = '\0';
gtk_text_buffer_insert
I have a function that returns a const char * to a fixed value and when i am using this function i do a "==" operator to find eguality between the ...