diff options
author | Markus Ongyerth <ongy@ongy.net> | 2018-07-07 17:56:37 +0200 |
---|---|---|
committer | Markus Ongyerth <ongy@ongy.net> | 2018-07-14 09:52:34 +0200 |
commit | 74ca2f8fcf10f5b00b4a3eeb121e418e1b5212e0 (patch) | |
tree | 42e3f80ac6870482c00d221d7a342ca144534556 /include/util | |
parent | 43b20bfea2070df78ba7cb12a78a5f7a42dd21f5 (diff) |
Another round of feedback from acrisci
Diffstat (limited to 'include/util')
-rw-r--r-- | include/util/array.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/util/array.h b/include/util/array.h new file mode 100644 index 00000000..1c046e1d --- /dev/null +++ b/include/util/array.h @@ -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 |