| Unit LList |
| Classes |
TLinkedListForm - The next cell in the list.
| Functions |
| Types |
| Constants |
| Variables |
| Functions |
| Types |
PCell = ^TCellThe linked list cells.
TCell = record
Value : String[20];
NextCell : PCell;
end;
| Constants |
| Variables |