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