mirror of
https://github.com/encounter/bfbb.git
synced 2026-03-30 10:58:00 -07:00
57d589179e
* Attempt all functions in file, almost all 100% match. * A couple of larger ones are left NON_MATCHING. * A couple are doing really weird stuff that I have no clue on.
23 lines
463 B
C
23 lines
463 B
C
#ifndef _MSL_STRING_H
|
|
#define _MSL_STRING_H
|
|
|
|
#include <size_t.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void* memset(void*, int, size_t);
|
|
void* memcpy(void*, const void*, size_t);
|
|
size_t strlen(const char*);
|
|
char* strcpy(char* dest, const char* source);
|
|
char* strncpy(char* dest, const char* source, size_t n);
|
|
char* strcat(char* dest, const char* source);
|
|
int stricmp(const char* a, const char* b);
|
|
int atoi(const char* s);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |