1
0
Fork 0
mirror of https://github.com/hyprwm/wlroots-hyprland.git synced 2025-02-03 12:29:49 +01:00
wlroots-hyprland/include/util/array.h
2018-07-14 09:52:34 +02:00

9 lines
145 B
C

#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