Another round of feedback from acrisci

This commit is contained in:
Markus Ongyerth 2018-07-07 17:56:37 +02:00
parent 43b20bfea2
commit 74ca2f8fcf
5 changed files with 44 additions and 42 deletions

9
include/util/array.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef UTIL_ARRAY_H
#define UTIL_ARRAY_H
#include <stdint.h>
#include <stdlib.h>
size_t push_zeroes_to_end(uint32_t arr[], size_t n);
#endif