home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / EZY110-1.ARJ / STRUCT.ARJ / CLIB.ARJ / ABSLASH.CPP next >
C/C++ Source or Header  |  1995-03-28  |  186b  |  12 lines

  1. #include <string.h>
  2.  
  3. char *AppendBackslash(char *Source)
  4. {
  5.   if (*Source) {
  6.     if (Source[strlen(Source)] != '\\') {
  7.       strcat(Source,"\\");
  8.     }
  9.   }
  10.   return(Source);
  11. }
  12.