Create a branch for header work.
[reactos.git] / base / applications / network / ftp / fake.h
1 #define bcopy(s,d,l) memcpy((d),(s),(l))
2 #define bzero(cp,l) memset((cp),0,(l))
3
4 #define rindex strrchr
5 #define index strchr
6
7 #define getwd getcwd
8
9 #define strcasecmp _stricmp
10 #define strncasecmp _strnicmp
11
12 struct timezone {
13 int tz_minuteswest; /* minutes W of Greenwich */
14 int tz_dsttime; /* type of dst correction */
15 };
16
17 int gettimeofday(struct timeval *tv, struct timezone *tz);