update for HEAD-2003021201
[reactos.git] / lib / crtdll / tchar / strdec.c
1 #include <msvcrt/string.h>
2
3 char * _strdec(const char *str1, const char *str2) 
4
5         return (char *) (( str1 >= str2 ) ? ( str1 ) : --str2); 
6 }
7