mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
28 lines
526 B
C
28 lines
526 B
C
#ifndef MSL_STRING_H
|
|
#define MSL_STRING_H
|
|
#include <extras.h>
|
|
#include <internal/mem.h>
|
|
#include <types.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
char* strcpy(char*, const char*);
|
|
char* strncpy(char*, const char*, size_t);
|
|
|
|
char* strcat(char*, const char*);
|
|
char* strncat(char*, const char*, size_t);
|
|
|
|
int strcmp(const char*, const char*);
|
|
int strncmp(const char*, const char*, size_t);
|
|
|
|
char* strchr(const char*, int);
|
|
char* strstr(const char*, const char*);
|
|
|
|
size_t strlen(const char*);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|