home *** CD-ROM | disk | FTP | other *** search
/ Startware 5 / STARTWARE5.ISO / data / ufo / database / escapechars.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-29  |  380 b   |  36 lines

  1. /*
  2. /* Sostituzione di ' con \' e di \ con \\
  3. /*
  4. */
  5.  
  6. #include <stdio.h>
  7.  
  8. #define    MAXLENGTH    4096
  9.  
  10. void main(void)
  11. {
  12.     char    S[MAXLENGTH],S2[MAXLENGTH];
  13.     int    is,is2;
  14.  
  15.  
  16.     while(!feof(stdin)&&gets(S))
  17.     {
  18.         is=is2=0;
  19.  
  20.         while(is<strlen(S))
  21.         {
  22.             switch(S[is])
  23.             {
  24.                 case    '\'':
  25.                 case    '\\':
  26.                     S2[is2++]='\\';
  27.             }
  28.  
  29.             S2[is2++]=S[is++];
  30.         }
  31.  
  32.         S2[is2]=0;
  33.         printf("%s\n",S2);
  34.     }
  35. }
  36.