This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
avltree/Element.h

12 lines
152 B
C

#ifndef __Element_H
#define __Element_H
typedef long *Element;
short Compare(Element Data1, Element Data2);
void FreeElement(Element Data);
#endif