Merging r37048, r37051, r37052, r37055 from the-real-msvc branch
[reactos.git] / reactos / 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 strcmp
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);