blob: dc054d7e9cea3f53a5a8946226873d5c9d7b2bf0 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <stddef.h>
#ifndef HAVE_STRINGXTC_H
#define HAVE_STRINGXTC_H
size_t strscat(char *dest, const char *src, size_t count);
size_t strscpy(char *dest, const char *src, size_t count);
char *XtcStrlwr(char *str);
int XtcStricmp(const char *a, const char *b);
#endif
|