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