13 lines
127 B
C
13 lines
127 B
C
|
#ifndef TAPE_UTIL_H
|
||
|
#define TAPE_UTIL_H
|
||
|
|
||
|
#include "tape.h"
|
||
|
|
||
|
namespace tape {
|
||
|
|
||
|
void sort(Tape &input, Tape &output);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|