TODO
[tpg/acess2.git] / Usermode / Applications / axwin2_src / WM / helpers.c
1 /*
2  * Acess GUI (AxWin) Version 2
3  * By John Hodge (thePowersGang)
4  */
5 #include "common.h"
6
7 // === CODE ===
8 void memset32(void *ptr, uint32_t val, size_t count)
9 {
10         uint32_t *dst = ptr;
11         while(count --) *dst++ = val;
12 }

UCC git Repository :: git.ucc.asn.au