hlfw.ca

binpack

ref: 3098cb43c056b90b56247b6b313e0e3c98a1b417
dir: /binpack.c/

View raw version
#include <stdbool.h>
#include <stdlib.h>

#include "binpack.h"

void
binary_bin_pack(unsigned width, unsigned height, struct Output out[], struct Input in[]) {

}

// Make sure we pass with one or fewer elements
bool
bin_pack(unsigned width, unsigned height, struct Output out[], struct Input in[]) {
	return true;
}