aboutsummaryrefslogtreecommitdiff
path: root/include/util/array.h
blob: 1c046e1d54fcc3e9862ecfefb38da1eb922fd169 (plain)
1
2
3
4
5
6
7
8
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