12 lines
151 B
C
12 lines
151 B
C
|
#ifndef __TOURNAMENT_H__
|
||
|
#define __TOURNAMENT_H__
|
||
|
|
||
|
#include <string>
|
||
|
using namespace std;
|
||
|
|
||
|
#include "sm_array.h"
|
||
|
|
||
|
string tournament(garray &);
|
||
|
|
||
|
#endif
|