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

  1. /* Program 3_7a - Search STDIN for a given string
  2.     by Stephen R. Davis, 1987
  3.  
  4.   Search the input stream (STDIN) for a given character string.
  5.   Ouput on the output stream (STDOUT) everything input with those
  6.   lines containing the string marked.  Print totals at the bottom
  7.   of number of lines with string and number of lines total.
  8. */
  9.  
  10. #include <stdio.h>
  11.  
  12. /*prototype definitions - */
  13. int main (int, char **);
  14. int find (char *, char *);
  15.  
  16. /*Main - after making sure one argument is present, search for
  17.      that argument in the input stream STDIN.  Mark and count
  18.      the occurrences*/
  19. main (argc, argv)
  20.     int argc;
  21.     char *argv[];
  22. {
  23.     unsigned linenum, flagged;
  24.     char flagc, string [256];
  25.  
  26.     if (argc != 2) {
  27.          printf ("Illegal input\n"
  28.               "      try : prog12a <file string\n");
  29.          exit (-1);
  30.     } else {
  31.          linenum = flagged = 0;
  32.          while (gets (string)) {
  33.               flagc = ' ';
  34.               if (find (argv[1], string)) {
  35.                    flagc = '*';
  36.                    flagged++;
  37.               }
  38.               printf ("%c %3u: %s\n", flagc, ++linenum, string);
  39.          }
  40.          printf ("\nTotals:\n  all lines %3u\n  matched   %3u\n",
  41.               linenum, flagged);
  42.     }
  43. }
  44.  
  45. /*find - find string1 in string2; if found return 1, else 0 */
  46. int find (ptr1, ptr2)
  47.     char *ptr1, *ptr2;
  48. {
  49.     char *tptr1, *tptr2;
  50.  
  51.     for (; *ptr2; ptr2++) {
  52.          tptr1 = ptr1;
  53.          tptr2 = ptr2;
  54.          while  (*tptr1++ == *tptr2++)
  55.               if (!*tptr1)
  56.                    return 1;
  57.     }
  58.     return 0;
  59. }
  60.