move CPP_OPTS to config
[prop.git] / prop-src / list.ph
blob9a9ca5879894dd4798b8e8e99229e76c48ede8aa
1 #ifndef list_operations_h
2 #define list_operations_h
4 #include "basics.ph"
6 template <class T> int length (List<T>);
7 template <class T> List<T> append (List<T>, List<T>);
8 template <class T> List<T> rev (List<T>);
10 #endif