Untitled

 avatar
unknown
plain_text
4 years ago
106 B
4
Indexable
#ifndef LISTNODE_H
#define LISTNODE_H

struct ListNode {
    ItemType item;
    ListNode* next;
};

#endif
Editor is loading...