yadro-task/include/tapelib/tape_util.h
erius cab1b88a77 Restuctured source tree - added bin and tests directories
Disabled warnings as errors
bumped the cmake min version to 3.12 for c++20 support and -j flag
Placed a CMakeLists.txt in each subdirectory of the project
2024-10-24 04:25:45 +03:00

12 lines
127 B
C++

#ifndef TAPE_UTIL_H
#define TAPE_UTIL_H
#include "tape.h"
namespace tape {
void sort(Tape &input, Tape &output);
}
#endif