diff options
author | 2021-02-17 08:57:56 +0200 | |
---|---|---|
committer | 2021-02-17 08:57:56 +0200 | |
commit | 26ab990a747ab675bcff32a40734dcb61468f652 (patch) | |
tree | ef820c67202a3fb97ff4b2ae5df7caf347403b58 /src/defs.h | |
parent | e5a7592b606f6e75981fd48b32b3593a1d7c7f77 (diff) | |
download | algos-ld1-26ab990a747ab675bcff32a40734dcb61468f652.tar.gz algos-ld1-26ab990a747ab675bcff32a40734dcb61468f652.tar.bz2 algos-ld1-26ab990a747ab675bcff32a40734dcb61468f652.zip |
Most of sorting an array in memory is wired up.
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'src/defs.h')
-rw-r--r-- | src/defs.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -97,12 +97,11 @@ enum streamtype { }; struct stream { - struct stream *parent; + long int parentid; size_t n; int fd; enum streamtype type; char *name; - size_t stride; size_t index; struct entry_l *pnode; /* "previous" node */ struct entry_l *cnode; /* "current" node */ |