mirror of
https://github.com/encounter/ac-decomp.git
synced 2026-03-30 10:57:04 -07:00
25 lines
612 B
C
25 lines
612 B
C
#ifndef _DOLPHIN_STRING_H
|
|
#define _DOLPHIN_STRING_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // ifdef __cplusplus
|
|
|
|
size_t strlen(const char*);
|
|
char* strrchr(const char* str, int chr);
|
|
char* strchr(const char* str, int chr);
|
|
int strncmp(const char* str1, const char* str2, size_t n);
|
|
int strcmp(const char* str1, const char* str2);
|
|
int stricmp(char*, char*);
|
|
char* strcpy(char*, const char*);
|
|
char* strcat(char* dst, const char* src);
|
|
char* strncpy(char* dst, const char* src, size_t n);
|
|
char* strstr(const char* str, const char* pat);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif // ifdef __cplusplus
|
|
|
|
#endif |