mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2025-01-27 02:55:26 +01:00
bb1774e2c3
booter, dont even think about it to report bugs with it
22 lines
540 B
C
22 lines
540 B
C
/*
|
|
TinyLoad - a simple region free (original) game launcher in 4k
|
|
|
|
# This code is licensed to you under the terms of the GNU GPL, version 2;
|
|
# see file COPYING or http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
|
*/
|
|
|
|
// Copyright 2008-2009 Hector Martin <marcan@marcansoft.com>
|
|
|
|
#ifndef __UTILS_H__
|
|
#define __UTILS_H__
|
|
|
|
#include "types.h"
|
|
|
|
void *memset(void *,int,int);
|
|
void *memcpy(void *ptr, const void *src, int size);
|
|
int memcmp(const void *s1, const void *s2, size_t n);
|
|
int strlen(const char *ptr);
|
|
void udelay(u32 us);
|
|
|
|
#endif
|