Added binary and unicode file i/o support to msvcrt.
[reactos.git] / reactos / lib / crtdll / tchar / strdec.c
1 #include <msvcrt/tchar.h>
2
3 char * _strdec(const char *str1, const char *str2)
4 {
5 return (char *) (( str1 >= str2 ) ? ( str1 ) : --str2);
6 }
7