mirror of
https://github.com/project-slippi/Nintendont.git
synced 2025-10-06 08:32:41 +02:00
20 lines
469 B
C
20 lines
469 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 usleep(u32 us);
|
||
|
void _memcpy(void *ptr, const void *src, u32 size);
|
||
|
void _memset(void *ptr, int c, u32 size);
|
||
|
|
||
|
#endif
|