Files
bfbb/include/CodeWarrior/string.h
T
Mark Langen 57d589179e zVar 80% progress (#79)
* 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.
2021-01-01 19:34:45 -05:00

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