Files
Yanis 9f54fa4db9 Match MQ-E and CE-E (#170)
* started pal support

* matched system

* comments

* format

* fixed more comments

* incbin the rom arrays

* review
2024-09-04 13:35:46 +02:00

16 lines
413 B
C

#ifndef _STRING_H_
#define _STRING_H_
#include "mem_funcs.h"
#include "stddef.h"
size_t strlen(const char* s);
char* strcpy(char* dest, const char* src);
char* strncpy(char* dest, const char* src, size_t num);
int strcmp(const char* s1, const char* s2);
int strncmp(const char* s1, const char* s2, size_t n);
char* strncat(char* dest, const char* src, size_t n);
char* strchr(const char* str, int chr);
#endif