MWCC/command_line/CmdLine/Src/OSLib/StringExtras.c

18 lines
260 B
C
Raw Normal View History

#include "oslib.h"
char *strcatn(char *d, const char *s, SInt32 max) {
}
char *strcpyn(char *d, const char *s, SInt32 len, SInt32 max) {
}
int ustrcmp(const char *src, const char *dst) {
}
int ustrncmp(const char *src, const char *dst, UInt32 len) {
}