Searched refs:txt_buf (Results 1 – 2 of 2) sorted by relevance
459 void lv_text_ins(char * txt_buf, uint32_t pos, const char * ins_txt) in lv_text_ins() argument461 if(txt_buf == NULL || ins_txt == NULL) return; in lv_text_ins()463 size_t old_len = lv_strlen(txt_buf); in lv_text_ins()468 …pos = lv_text_encoded_get_byte_id(txt_buf, pos); /*Convert to byte index instead of l… in lv_text_ins()473 txt_buf[i] = txt_buf[i - ins_len]; in lv_text_ins()477 lv_memcpy(txt_buf + pos, ins_txt, ins_len); in lv_text_ins()
54 void lv_text_ins(char * txt_buf, uint32_t pos, const char * ins_txt);