ReactOS 0.4.15-dev-7998-gdb93cb1
tcscmp.h File Reference
#include <tchar.h>
Include dependency graph for tcscmp.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

int _tcscmp (const _TCHAR *s1, const _TCHAR *s2)
 

Function Documentation

◆ _tcscmp()

int _tcscmp ( const _TCHAR s1,
const _TCHAR s2 
)

Definition at line 8 of file tcscmp.h.

9{
10 while(*s1 == *s2)
11 {
12 if(*s1 == 0) return 0;
13
14 s1 ++;
15 s2 ++;
16 }
17
18 return *s1 - *s2;
19}
struct S1 s1
struct S2 s2