-
Notifications
You must be signed in to change notification settings - Fork 0
/
set.h
35 lines (28 loc) · 861 Bytes
/
set.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
* =====================================================================================
*
* Filename: set.h
*
* Description: header for set
*
* Version: 1.0
* Created: 28.9.2012 14:55:58
* Revision: 1
* Compiler: gcc
*
* Author: Robert David (davidrob@fit.cvut.cz), Vaclav Sajdl (sajdlvac@fit.cvut.cz)
* Organization: FIT
*
* =====================================================================================
*/
#ifndef __set_h__
#define __set_h__
winner_set * initial_winner( void );
void clean_winner( winner_set * winner );
winner_set * copy_winner( winner_set* );
inline void add_to_winner( winner_set*, int set, int number );
inline void del_from_winner( winner_set*, int set );
int construct_set( void );
int construct_set_others( void );
#endif
/* vim: set ts=2 sw=2 :*/