Rudiments
linkedlistutil.h
1 // Copyright (c) 2003 David Muse
2 // See the COPYING file for more information.
3 
4 #ifndef RUDIMENTS_LINKEDLIST_UTIL_H
5 #define RUDIMENTS_LINKEDLIST_UTIL_H
6 
7 #include <rudiments/private/inttypes.h>
8 
9 template <class valuetype>
11  public:
12  void print(valuetype value) const;
13  int32_t compare(valuetype value1, valuetype value2) const;
14 };
15 
16 #include <rudiments/private/linkedlistutilinlines.h>
17 
18 #endif