home *** CD-ROM | disk | FTP | other *** search
- /*Program Strip - Convert the load map generated by Turbo C into a
- load map acceptable to Phoenix's PFixPlus debugger.
- */
-
-
- #include <stdio.h>
-
- #define from "Publics by Value"
- #define to "Publics by Name "
-
- /*prototype declarations*/
- int main (void);
- void replace (char *, char *);
- int index (char *, char *);
-
- /*Main*/
- int main ()
- {
- char buffer [256];
- int offset;
-
- while (gets (buffer)) {
- if ((offset = index (buffer, from)) != -1)
- replace (&buffer [offset], to);
- puts (buffer);
- }
- }
-
- /*Replace - store string2 into string1*/
- void replace (string1, string2)
- char *string1, *string2;
- {
- while (*string2)
- *string1++ = *string2++;
- }
-
- /*Index - find string2 in string1*/
- int index (str1, str2)
- char *str1, *str2;
- {
- int count;
- char *ts1, *ts2;
-
- for (count = 0;; count++) {
- if (!*str1)
- break;
- ts1 = str1++;
- ts2 = str2;
- while (*ts1++ == *ts2++)
- if (!*ts2)
- return count;
- }
- return -1;
- }