update for HEAD-2003091401
[reactos.git] / lib / string / tcscmp.h
1 /* $Id$
2  */
3
4 #include <tchar.h>
5
6 int _tcscmp(const _TCHAR* s1, const _TCHAR* s2)
7 {
8  while(*s1 == *s2)
9  {
10   if(*s1 == 0) return 0;
11
12   s1 ++;
13   s2 ++;
14  }
15
16  return *s1 - *s2;
17 }
18
19 /* EOF */