summaryrefslogtreecommitdiff
path: root/include/gba/libc.h
blob: 9ed82ac2855d068447737b93419a0fc59ab22c45 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef GUARD_LIBC_H
#define GUARD_LIBC_H

void *memset(void *dst, int val, size_t size);
void *memcpy(void *dst, const void *src, size_t size);
int strcmp(const char *s1, const char *s2);
char *strcpy(char *dst0, const char *src0);
#define abs(x) ((x) >= 0 ? (x) : -(x))

#endif //GUARD_LIBC_H