/*^M strrev - An inplementation of Microsoft Visual C's strrev function^M Copyright (C) 2002 John Ericson^M */^M ^M #ifndef STRREV_HEADER^M #define STRREV_HEADER^M ^M #ifndef MSVC #include <string.h> char *strrev(char *str); ^M #endif #endif /* STRREV_HEADER */