dashboard
repositories
filestore
activity
search
login
speedprog
/
mtg/mtg_card_detector
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
ADAM
Joseph Redmon
2016-10-26
352ae7e65b6a74bcd768aa88b866a44c713284c8
[~speedprog/mtg/mtg_card_detector.git]
/
src
/
tree.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef TREE_H
#define TREE_H
typedef struct{
int *leaf;
int n;
int *parent;
char **name;
int groups;
int *group_size;
} tree;
tree *read_tree(char *filename);
#endif