File nut/gorp/edit/history.c


Included Files


Global Function EditHistoryCreate()

EDITHISTORY* EditHistoryCreate ( int siz )
Prototyped in: nut/include/gorp/edline.h
Calls: free() nut/crt/malloc.c
  malloc() nut/crt/malloc.c
  calloc()
Called by: EdLineOpen() nut/gorp/edit/edline.c

Global Function EditHistoryDestroy()

void EditHistoryDestroy ( EDITHISTORY* hist )
Prototyped in: nut/include/gorp/edline.h
Calls: free() nut/crt/malloc.c
Called by: EdLineClose() nut/gorp/edit/edline.c

Global Function EditHistoryGet()

int EditHistoryGet ( EDITHISTORY* hist, int idx, char* buf, int siz )
Prototyped in: nut/include/gorp/edline.h
Calls: memcpy() nut/c/string/memcpy.c
  strlen() nut/c/string/strlen.c
Called by: EdLineRead() nut/gorp/edit/edline.c

Global Function EditHistoryInsert()

void EditHistoryInsert ( EDITHISTORY* hist, int idx, char* buf )
Prototyped in: nut/include/gorp/edline.h
Calls: free() nut/crt/malloc.c
  strcmp() nut/c/string/strcmp.c
  strdup() nut/crt/strdup.c
Called by: EdLineRead() nut/gorp/edit/edline.c

Global Function EditHistorySet()

void EditHistorySet ( EDITHISTORY* hist, int idx, char* buf )
Prototyped in: nut/include/gorp/edline.h
Calls: free() nut/crt/malloc.c
  strdup() nut/crt/strdup.c
Called by: EdLineRead() nut/gorp/edit/edline.c