Files
cpp3ds/include/sim3ds/utils.h
T
2014-02-27 22:16:28 -05:00

13 lines
181 B
C

#ifndef UTILS_H
#define UTILS_H
#include <stdlib.h>
#include <stddef.h>
#include <stdint.h>
int strlen(char* string);
void itoa(int n, char s[]);
void reverse(char s[]);
#endif