mirror of
https://github.com/encounter/cpp3ds.git
synced 2026-03-30 11:04:22 -07:00
13 lines
181 B
C
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
|