diff options
author | Alexandre Jesus <adbjesus@gmail.com> | 2016-09-25 15:24:57 +0100 |
---|---|---|
committer | Alexandre Jesus <adbjesus@gmail.com> | 2016-09-25 15:24:57 +0100 |
commit | 5deedbbbf98e317ef3258ae637097a42ad7e9fd3 (patch) | |
tree | abc7e29bb1d38b3eb593315f0765520a0b48c520 /include/structs.h | |
parent | ab36da1ba07529c54c462906f4b2c2b305b84168 (diff) | |
download | libuknapsack-5deedbbbf98e317ef3258ae637097a42ad7e9fd3.tar.gz libuknapsack-5deedbbbf98e317ef3258ae637097a42ad7e9fd3.zip |
Online method
Diffstat (limited to 'include/structs.h')
-rw-r--r-- | include/structs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/structs.h b/include/structs.h index 7c39b4d..1d15084 100644 --- a/include/structs.h +++ b/include/structs.h @@ -30,4 +30,9 @@ struct tree_item { struct tree_item * next; }; +struct online_return { + struct front_item * front; + struct tree_item * tree; +}; + #endif |