More work on UDI support, still doesn't load pseudud yet
[tpg/acess2.git] / Modules / UDI / strmem.c
1 /**
2  * \file strmem.c
3  * \author John Hodge (thePowersGang)
4  */
5 #include <acess.h>
6 #include <udi.h>
7 #include <udi_strmem.h>
8
9 // === CODE ===
10 udi_size_t udi_snprintf(char *s, udi_size_t max_bytes, const char *format, ...)
11 {
12         s[0] = '\0';
13         return 0;
14 }
15
16 // === EXPORTS ===
17 EXPORT(udi_snprintf);

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