git.ucc.asn.au
/
tpg
/
acess2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Major build system changes
[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