dashboard
repositories
filestore
activity
search
login
speedprog
/
mtg/mtg_card_detector
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
tree things, tree stuff
Joseph Redmon
2016-10-24
91f95c715bff84094fc18bad6a8f938291b9b0f5
[~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