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

  1. /* Program 3_7b - 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.   Output whatever is input with lines containing the string
  6.   marked.  Accept optional arguments controlling details of the
  7.   search:
  8.      /i - ignore case (this has the side effect of outputting
  9.                        everything in lower case also)
  10.      /t - only print totals
  11.      /l - print the matching lines only
  12. */
  13. #include <stdio.h>
  14. #include <ctype.h>
  15. #include <process.h>
  16. #define FALSE 0
  17. #define TRUE 1
  18.  
  19. /*prototype definitions -*/
  20. int main (int, char **);
  21. int find (char *, char *);
  22. void forcelow (char *);
  23.  
  24. /*Main - scan the input stream for the appearance of the first
  25.      argument considering the switches noted above*/
  26. main (argc, argv)
  27.     int argc;
  28.     char *argv[];
  29. {
  30.     unsigned linenum, flagged;
  31.     char flagc, string [256], *ptr;
  32.     int ignore, alllines, body;
  33.  
  34.     ignore = FALSE;                    /*assume no switches*/
  35.     alllines = TRUE;
  36.     body = TRUE;
  37.  
  38.     while (*argv[1] == '/') {          /*now, look for switches*/
  39.          for (ptr = argv[1]; *ptr; ptr++)
  40.               switch (tolower (*ptr)) {
  41.                    case '/': break;    /*ignore imbedded /'s*/
  42.                    case 'i': ignore = TRUE;
  43.                              break;
  44.                    case 'c': body = FALSE;
  45.                              break;
  46.                    case 't': alllines = FALSE;
  47.                              break;
  48.                    default : printf ("Illegal switch: /%c\n",
  49.                                          *ptr);
  50.                              exit (-2);
  51.               }
  52.          argc--;                       /*remove switch from args*/
  53.          argv++;
  54.     }
  55.  
  56.     if (argc != 2) {
  57.          printf ("Illegal input\n"
  58.               "    try : prg3_7b <file [/ilt] string\n");
  59.          exit (-1);
  60.     } else {
  61.          linenum = flagged = 0;
  62.          if (ignore)
  63.               forcelow (argv[1]);
  64.  
  65.          while (gets (string)) {
  66.               if (ignore)
  67.                    forcelow (string);
  68.               linenum++;
  69.               flagc = ' ';
  70.               if (find (argv[1], string)) {
  71.                    flagc = '*';
  72.                    flagged++;
  73.               }
  74.               if (body)
  75.                    if (flagc == '*' || alllines)
  76.                         printf ("%c %3u: %s\n", flagc,
  77.                                         linenum, string);
  78.          }
  79.          printf ("\nTotals:\n  all lines %3u\n  matched   %3u\n",
  80.               linenum, flagged);
  81.     }
  82. }
  83.  
  84. /*Find - find string1 in string2; if found return 1, else 0 */
  85. int find (ptr1, ptr2)
  86.     char *ptr1, *ptr2;
  87. {
  88.     char *tptr1, *tptr2;
  89.  
  90.     for (; *ptr2; ptr2++) {
  91.          tptr1 = ptr1;
  92.          tptr2 = ptr2;
  93.          while  (*tptr1++ == *tptr2++)
  94.               if (!*tptr1)
  95.                    return 1;
  96.     }
  97.     return 0;
  98. }
  99.  
  100. /*Forcelow - force all characters to lower case*/
  101. void forcelow (ptr)
  102.     char *ptr;
  103. {
  104.     for (; *ptr; ptr++)
  105.          if (isalpha (*ptr))
  106.               *ptr = tolower (*ptr);
  107. }
  108.