got nonbinary partitioning working yippie

This commit is contained in:
do butterflies cry? 2025-09-15 19:26:04 +10:00
parent 6b5bcff1a4
commit 330755591b
6 changed files with 170 additions and 57 deletions

11
cursetree/nsparted.c Normal file
View file

@ -0,0 +1,11 @@
#include "nsparted.h"
struct ct_nsparted init_nsparted(struct ct_node *const node,
struct ct_dims *const dims) {
struct ct_nsparted nsparted = (struct ct_nsparted) {
.node = node,
.dims = dims,
.
}
}