MCPcopy Create free account
hub / github.com/TheOfficialFloW/VitaShell / updateTextEntries

Function updateTextEntries

text.c:210–222  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208}
209
210static void updateTextEntries(TextEditorState *state) {
211 TextListEntry *entry = state->list.head;
212 int i;
213 for (i = 0; i < MAX_ENTRIES; i++) {
214 if (!entry) {
215 break;
216 }
217
218 updateTextEntry(state, entry, i);
219
220 entry = entry->next;
221 }
222}
223
224
225static CopyEntry *copy_line(TextEditorState *state, int line_number) {

Callers 5

delete_lineFunction · 0.85
insert_lineFunction · 0.85
paste_linesFunction · 0.85
contextMenuEnterCallbackFunction · 0.85
textViewerFunction · 0.85

Calls 1

updateTextEntryFunction · 0.85

Tested by

no test coverage detected