home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c072 / 1.ddi / STRIP.C < prev   
Encoding:
C/C++ Source or Header  |  1987-09-19  |  1.1 KB  |  55 lines

  1. /*Program Strip - Convert the load map generated by Turbo C into a
  2.                    load map acceptable to Phoenix's PFixPlus debugger.
  3. */
  4.  
  5.  
  6. #include <stdio.h>
  7.  
  8. #define from "Publics by Value"
  9. #define to   "Publics by Name "
  10.  
  11. /*prototype declarations*/
  12. int main (void);
  13. void replace (char *, char *);
  14. int index (char *, char *);
  15.  
  16. /*Main*/
  17. int main ()
  18. {
  19.      char buffer [256];
  20.      int offset;
  21.  
  22.      while (gets (buffer)) {
  23.           if ((offset = index (buffer, from)) != -1)
  24.                replace (&buffer [offset], to);
  25.           puts (buffer);
  26.      }
  27. }
  28.  
  29. /*Replace - store string2 into string1*/
  30. void replace (string1, string2)
  31.      char *string1, *string2;
  32. {
  33.      while (*string2)
  34.           *string1++ = *string2++;
  35. }
  36.  
  37. /*Index - find string2 in string1*/
  38. int index (str1, str2)
  39.      char *str1, *str2;
  40. {
  41.      int count;
  42.      char *ts1, *ts2;
  43.  
  44.      for (count = 0;; count++) {
  45.           if (!*str1)
  46.                break;
  47.           ts1 = str1++;
  48.           ts2 = str2;
  49.           while (*ts1++ == *ts2++)
  50.                if (!*ts2)
  51.                     return count;
  52.      }
  53.      return -1;
  54. }
  55.